次の方法で共有


使用可能な Liquid の条件演算子

条件付きステートメント (ifunless) で使用される流動値の一部は true として扱われ、一部は false として扱われます。

Liquid では、null とブール値の false は false として扱われ、他のすべては true として扱われます。 たとえば、空の文字列や空の配列は true としてあつかわれます。

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

特殊空の値を必要に応じて使用し、空の文字列および空の配列に対してテストします。

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

特別な size プロパティを使用して、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 ×
配列またはディクショナリ ×
空の配列またはディクショナリ ×
オブジェクト ×

関連項目