Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,我试图用 Jinja2 解决差异方式。我有一个保存在数据库中的号码。当我打印原始号码时,例如:907333-5000。我希望以这种格式打印该号码:(907) 333-5000,但我不知道该如何处理 Jinja2。谢谢
或者您可以为电话号码创建一个过滤器,例如 {{ phone_number|phone }}
我猜这个数字作为字符串存储在你的数据库中。
你能做的——
{% print "("+num[:3]+") "+num[3:] %}
您要打印电话号码的位置。