可用的 Liquid 条件运算符

在条件语句(ifunless)中使用时,有些 Liquid 值将视为 true,有些则视为 false。

在 Liquid 中,null 和布尔值 false 被视为 false,其他所有项均视为 true。 空字符串、空数组等被视为 true。 例如,

{% assign empty_string = "" %}
{% if empty_string %}
<p>This will render.</p>
{% endif %}

如果需要,您可以使用特殊值 empty 对空字符串和数组进行测试。

{% unless page.title == empty %}
<h1>{{ page.title }}</h1>
{% endunless %}

还可以使用特殊大小属性测试 Liquid 类型的大小。

{% if page.children.size > 0 %}
<ul>
{% for child in page.children %}
<li>{{ child.title }}</li>
{% endfor %}
</ul>
{% endif %}

总结

Operator
×
×
Null ×
String ×
空字符串 ×
0 ×
1, 3.14 ×
数组或词典 ×
空数组或词典 ×
对象 ×

另请参阅