我正在尝试在Big Cartel上制作一个多条件声明,并且我一直收到错误,告诉我在When语句中有一个未知标记。我觉得这很简单。我究竟做错了什么?谢谢你的期待。
{% case product.status %}
{% when 'sold-out' %}
{% if product.id = '25027747' %}
RESULT 1
{% else %}
{% if product.id = '25027993' %}
RESULT 2
{% else %}
{% endif %}
答案 0 :(得分:0)
您想要使用此代码:
{% case product.status %}
{% when 'sold-out' %}
{% if product.id = '25027747' %}
RESULT 1
{% elsif product.id = '25027993' %}
RESULT 2
{% endif %}
{% endcase %}