IF a == true OR b == true 语句
我找不到让 TWIG 解释以下条件语句的方法:
{% if a == true or b == true %}
do stuff
{% endif %}
我是否遗漏了某些内容或者这是不可能的?
I can't find a way to have TWIG interpret the following conditional statement:
{% if a == true or b == true %}
do stuff
{% endif %}
Am I missing something or it's not possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查这个Twig 参考。
你可以这么简单地做到这一点:
check this Twig Reference.
You can do it that simple:
每个比较表达式都应该放在自己的括号中:
如果您要检查单个变量和多个可能值,则可以选择:
Comparison expressions should each be in their own brackets:
Alternative if you are inspecting a single variable and a number of possible values: