0

我正在自定义订单确认电子邮件,但是当我尝试发送订单项属性时,它在一行中显示为名称和值。宽度 900。我想在名称中显示宽度:900 :值格式。

我怎样才能做到这一点?

{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p }}</span><br/>
{% endfor %}
{% endfor %}
4

1 回答 1

1

line.properties会给你一个json对象。试试这个

{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p.first }}: {{ p.last }}</span><br/>
{% endfor %}
{% endfor %}
于 2019-10-17T12:22:34.883 回答