django 模板中可以使用布尔逻辑吗?
我想做一些类似的事情:
{% if ("view_video" in video_perms) OR purchase_override %}
这可能吗?
I want to do something like:
{% if ("view_video" in video_perms) OR purchase_override %}
Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
的 Django 文档
您提供:
为
有关布尔运算符 请注意
and
的优先级高于or
,并且不能使用括号。如果需要,请使用嵌套块。Django docs on boolean operators
Gives you:
and
Be aware that
and
has a higher order of precedence thanor
, and that parentheses are not possible. If required use nested blocks.