我有一个XML列表。我需要根据日期打印价格。 这就是我想要做的: 我怎么能说,关键的价格=“2017-03-31”> 99.85301833 ??
<#list reportData.allProductPrices as x>${x},</#list>
或
${reportData.allProductPrices?first}
答案 0 :(得分:0)
使用XPath进行最后一步:
${reportData.allProductPrices['item[@key="2017-03-31"]']}