指定一個默認值,以防預期的值不存在。如果左側(cè)的值為?nil
、false
?或空,default
?將輸出此默認值。
如下實例中,product_price
?并未被定義,因此將輸出默認值。
輸入
{{ product_price | default: 2.99 }}
輸出
2.99
如下實例中,product_price
?已被定義,不再輸出默認值。
輸入
{% assign product_price = 4.99 %}
{{ product_price | default: 2.99 }}
輸出
4.99
如下實例中,product_price
?的值為空,因此將輸出默認值。
輸入
{% assign product_price = "" %}
{{ product_price | default: 2.99 }}
輸出
2.99
? Copyright 2023 深圳藍曬科技有限公司. 粵ICP備2023054553號-1