v8.1.0
按照数组中对象的属性值来过滤得到新数组,如果未指定第二个参数(属性值)则过滤得到所有属性值为 truthy 的对象。
下面的例子中,假设你有一个 products 列表并且希望展示其中的厨房产品。使用 where 过滤器可以得到一个只包含 "type" 属性值为 "kitchen" 的元素的数组。
输入
All products: {% for product in products %} - {{ product.title }} {% endfor %}
{% assign kitchen_products = products | where: "type", "kitchen" %}
Kitchen products: {% for product in kitchen_products %} - {{ product.title }} {% endfor %}
|
输出
All products: - Vacuum - Spatula - Television - Garlic press
Kitchen products: - Spatula - Garlic press
|
如果你有一个产品列表且希望只显示可用的产品,可以用 where 过滤器但不指定目标值,LiquidJS 会过滤得到 "available" 值为 truthy 的产品列表。
输入
All products: {% for product in products %} - {{ product.title }} {% endfor %}
{% assign available_products = products | where: "available" %}
Available products: {% for product in available_products %} - {{ product.title }} {% endfor %}
|
输出
All products: - Coffee mug - Limited edition sneakers - Boring sneakers
Available products: - Coffee mug - Boring sneakers
|
where 后面再加一个 first 可以用来得到单个元素。例如,你要展示秋季系列里的单个 T-shirt。
输入
{% assign new_shirt = products | where: "type", "shirt" | first %}
Featured product: {{ new_shirt.title }}
|
输出
Featured product: Hawaiian print sweater vest
|