我有一个地图列表 -listMaps List<Map<String,Object>>
我想使用 as:iterator
使用特定键值动态构建图像源
我已经尝试了以下但我没有得到任何结果
<s:iterator value="lastMaps" var="listMap" status="st">
test 1 <img src="<%=request.getContextPath()%>/image/%{#listMap.key}.jpg" />
test 2 <img src="<%=request.getContextPath()%>/image/%{'lastMaps['+#st.index+'].key'}.jpg" />
test 3 <img src="<%=request.getContextPath()%>/image/%{top['key']}.jpg" />
</s:iterator>
我查看了在 firebug 中解析的内容,我发现里面的任何文本%{''}
都没有被评估——甚至不是简单的文本
谢谢