我想知道是否有可能在用户将优惠券应用到购物车时向用户打印消息,如下所示:
{% if discount = testcoupon123 %}
You will get a free item!
{% endif %}
有人可以告诉我为什么这不起作用吗?
答案 0 :(得分:1)
尝试:
{% for discount in discounts %}
{% if discount.code = "testcoupon123" %}
You will get a free item!
{% endif %}
{% endfor %}