在列表免费标记中打印项目

时间:2018-05-01 12:24:06

标签: xml freemarker

我有一个XML列表。我需要根据日期打印价格。 这就是我想要做的: 我怎么能说,关键的价格=“2017-03-31”> 99.85301833 ??

<#list reportData.allProductPrices as x>${x},</#list>

${reportData.allProductPrices?first}

这是我的XML:enter image description here

1 个答案:

答案 0 :(得分:0)

使用XPath进行最后一步:

${reportData.allProductPrices['item[@key="2017-03-31"]']}