我在 JSP 页面中使用 JSTL 来读取 xml 文件
一切正常,我可以遍历文件并使用此代码读取值
<x:forEach select="$resultatXML/users/user" var="user">
<tr>
<td><x:out select="$user/@num"></x:out></td>
<td><x:out select="$user/name"></x:out></td>
<td><x:out select="$user/credit"></x:out></td>
</tr>
</x:forEach>
我现在想要的是所有行的所有 $user/credit 的总和,我做不到,因为当我尝试设置变量时它给了我错误
<x:set var="credit" select="$user/credit" scope="page"/>
<c:out value="${pageScope.credit }"/>
它给了我
[[credit: null]]
我现在只想要我们所有学分的总和