标签: php magento templates mustache
在Magento模板文件中,如何输出数组键的值。
例如:
{{var rewards.UsablePoints}}
将返回
阵列
内容如下:
[0](int)=> 12
使用magento的胡子语法({{...}})我将如何显示" 12"而不是"数组"。
答案 0 :(得分:1)
{{var rewards.UsablePoints.0}}