微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如果木材/树枝中的声明对我不起作用

如何解决如果木材/树枝中的声明对我不起作用

所以,如果我有一个 {% if post.product_status != 'In Stock' or 'In Transit' %} {# 执行我的代码 #} {% endif %} 什么会不起作用,我使用 or 运算符有什么问题吗?我应该改用什么?

解决方法

您的语句将始终返回 true,因为 In Transit - 它是非空字符串。

你可以测试一下

{% if 'In Transit' %}
    // Will be executed
{% endif %}

{% if false or 'In Transit' %}
    // Will be executed because one of condition is true
{% endif %}

{% if post.product_status != 'In Stock' or post.product_status != 'In Transit' %}
    // Will be executed. Why? Even if your status is not 'In Stock' second part of condition will return true
{% endif %}

{% if post.product_status != 'In Stock' and post.product_status != 'In Transit' %}
    // Will NOT be executed if status is 'In Stock' or 'In Transit'. Both conditions are false now
{% endif %}

此条件变得非常难以理解,因此最好将其更改为。让我们检查我们的状态值是否存在于排除状态数组中

{% set excluded = [ 'In Stock','In Transit','Any New Status Here' ] %}

{% if post.product_status not in excluded %}
    // Code to execute
{% endif %}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。