液体转化:替换/用
Liquid Transformation: Replace / with
我在用液体变换替换子字符串时遇到了一些麻烦。
这是我的输出,我想用点替换正斜杠。
"ProductName": "2x19/ display in control room"
我的代码如下所示:
[
{% for Order_var in content[0].ListOfSmsOrderEntrySales.OrderEntry-Orders.ListOfOrderEntry-LineItems.OrderEntry-LineItems %}
{
"Id":"{{Order_var.Id}}",
"PartNumber":"{{Order_var.PartNumber}}",
"Product":"{{Order_var.Product}}",
"ProductDefTypeCode":"{{Order_var.ProductDefTypeCode}}",
"ProductId":"{{Order_var.ProductId}}",
"ProductIntegrationId":"{{Order_var.ProductIntegrationId}}",
"NetPrice":"{{Order_var.NetPrice}}",
"ProductName":"{{Order_var.Description2 | replace: '/', '.' }}",
},
{% endfor %}
]
我仍然得到相同的输出,没有替代品。任何的想法?将感激不尽
干杯
请在液体模板中使用 Replace
而不是 replace
。 liquid的document显示{{ "Take my protein pills and put my helmet on" | replace: "my", "your" }}
,但根据测试,我们需要在liquid模板中使用大写Replace
。
我在用液体变换替换子字符串时遇到了一些麻烦。 这是我的输出,我想用点替换正斜杠。
"ProductName": "2x19/ display in control room"
我的代码如下所示:
[
{% for Order_var in content[0].ListOfSmsOrderEntrySales.OrderEntry-Orders.ListOfOrderEntry-LineItems.OrderEntry-LineItems %}
{
"Id":"{{Order_var.Id}}",
"PartNumber":"{{Order_var.PartNumber}}",
"Product":"{{Order_var.Product}}",
"ProductDefTypeCode":"{{Order_var.ProductDefTypeCode}}",
"ProductId":"{{Order_var.ProductId}}",
"ProductIntegrationId":"{{Order_var.ProductIntegrationId}}",
"NetPrice":"{{Order_var.NetPrice}}",
"ProductName":"{{Order_var.Description2 | replace: '/', '.' }}",
},
{% endfor %}
]
我仍然得到相同的输出,没有替代品。任何的想法?将感激不尽 干杯
请在液体模板中使用 Replace
而不是 replace
。 liquid的document显示{{ "Take my protein pills and put my helmet on" | replace: "my", "your" }}
,但根据测试,我们需要在liquid模板中使用大写Replace
。