django 模板中可以使用布尔逻辑吗?

发布于 2024-10-12 19:08:08 字数 118 浏览 1 评论 0原文

我想做一些类似的事情:

{% 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪心 2024-10-19 19:08:08

的 Django 文档

您提供:

{% if user in users %}
  If users is a QuerySet, this will appear if user is an
  instance that belongs to the QuerySet.
{% endif %}

{% if a == b or c == d and e %}

有关布尔运算符 请注意 and 的优先级高于 or,并且不能使用括号。如果需要,请使用嵌套块。

Django docs on boolean operators

Gives you:

{% if user in users %}
  If users is a QuerySet, this will appear if user is an
  instance that belongs to the QuerySet.
{% endif %}

and

{% if a == b or c == d and e %}

Be aware that and has a higher order of precedence than or, and that parentheses are not possible. If required use nested blocks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文