【发布时间】:2011-06-15 09:45:17
【问题描述】:
Magento 电子邮件模板 If 语句在我期望的情况下未评估为 true。有人可以告诉我有什么问题吗?看看下面的代码:
{{var customer.group_id}}
{{if customer.group_id}}Print true{{else}}Print false{{/if}}
{{if customer.group_id==4}}Print true{{else}}Print false{{/if}}
{{if customer.group_id=4}}Print true{{else}}Print false{{/if}}
{{if customer.group_id eq 4}}Print true{{else}}Print false{{/if}}
输出是
4
Print True
Print False
Print False
Print False
我尝试在 4 周围加上引号,但结果相同。如何使用 magento 电子邮件模板 if 语句评估相等性?
【问题讨论】:
标签: email templates magento magento-1.4