我正在构建一个电子邮件模板。我想构建一个这样的URL:
http://store.com/path/to/page?shipmentid=123
此代码构建正确的URL:
{{store url='path/to/page' _query_shipmentid=123}}
但123
部分应该是动态的。我需要它从这个变量中拉出来:
{{var shipment.id}}
这甚至可能吗?我正在寻找这样的东西:
{{store url='path/to/page' _query_shipmentid=shipment.id}}
答案 0 :(得分:3)
使用$
前缀让Magento知道它是可变的。这段代码应该有效:
{{store url='path/to/page' _query_shipmentid=$shipment.getId()}}