Liquid 包含了大量邏輯(logical)和比較操作符(comparison operator)。
==
!=
>
<
>=
<=
or
and
例如:
{% if product.title == "Awesome Shoes" %} These shoes are awesome! {% endif %}
可以在一個標記(tag)中使用多個操作符:
{% if product.type == "Shirt" or product.type == "Shoes" %} This is a shirt or a pair of shoes. {% endif %}
contains?用于檢查在一個字符串中是否存在某個子串。
contains
{% if product.title contains 'Pack' %} This product's title contains the word Pack. {% endif %}
contains?還可以用于檢查一個字符串數(shù)組中是否存在某個字符串。
{% if product.tags contains 'Hello' %} This product has been tagged with 'Hello'. {% endif %}
contains?只能用于搜索字符串。你不能將其用于從一個對象數(shù)組中檢查是否存在某個對象。
? Copyright 2023 深圳藍曬科技有限公司. 粵ICP備2023054553號-1