用Freemarker将字符串转换成数组

时间:2019-04-12 10:27:55

标签: freemarker

我正在尝试将以下字符串转换为数组,以便可以遍历它们。我想避免使用?eval。

item = "x, y, z, a"
itemPrice = "1, 2, 3, 4"

1 个答案:

答案 0 :(得分:2)

您可以split这个字符串:

<#assign items="x, y, z, a"?split(", ") >

<#list items as item>
${item}
</#list>