我有以下代码
c:set var = "device" value = "{a.sortList}"
现在我需要使用设备迭代循环
如下所示
c: forEach items = "device"
这会引发错误。
所以请帮助我,我想全局声明变量并在foreach中使用该变量,该变量如何实现。对于因使用手机输入
而导致的语法错误,我们深表歉意答案 0 :(得分:0)
您可以直接使用:
<c:forEach items="${a.sortList}" var="device" varStatus="count">
${device}
</c:forEach>
答案 1 :(得分:-1)
试试这个:
<c:set var = "devices" value = "{a.sortList}"/>
<c:forEach items="${devices}" var="device">
${device}
</c:forEach>