显示变量工作但不是数组
widget.js
init: function() {
this._super.apply(this, arguments);
this.num_field=123;
this.arr_field=["Saab", "Volvo", "BMW"]
},
widget.xml
<t t-raw="num_field" ></t>
<t t-foreach="arr_field" t-as="arr">
<t t-raw="arr" ></t>
</t>
上面的num_field
正在运作,但arr_field
无效。
如何显示?
答案 0 :(得分:2)
您可以尝试 t-esc :
<t t-foreach="arr_field" t-as="arr">
<t t-esc="arr" />
</t>