html 如何在带有Liquid的if语句中使用多个参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 如何在带有Liquid的if语句中使用多个参数相关的知识,希望对你有一定的参考价值。

{% if include.featured == true and product.featured == true %}
  {% assign test = true %}
{% endif %}

{% if include.featured == false and product.featured == false %}
  {% assign test = true %}
{% endif %}

{% if test %}
  Yepeeee!
{% endif %}

<!--
Another way you can condense this is to combine else if statements, and booleans don't necessarily need the "==" when evaluating true:
-->

{% if include.featured and product.featured %}
  {% assign test = true %}
{% elsif include.featured == false and product.featured == false %}
  {% assign test = false %}
{% endif %}

以上是关于html 如何在带有Liquid的if语句中使用多个参数的主要内容,如果未能解决你的问题,请参考以下文章

Liquid - if contains 语句在 for 循环中不起作用

如何在Liquid中获取HTML元素值

如何在 Liquid 或 Javascript 中循环使用 YAML 集合和 110 中的子集合?

带有 Jekyll 和 Liquid 的排序导航菜单

用于 Shopify 主题开发的 LESS CSS 和转义 Liquid 语法

如何在颤动中使用带有容器小部件的 if 语句