我正在尝试包含一个带有动态参数的文件。参数来自一个数组。
这是我写的代码:
<jsp:include page="${jspName}">
<c:if test="${paramList != null}">
<c:forEach var="paramPair" items="${paramList().getList()}">
<jsp:param name="${paramPair.getName()}" value="${paramPair.getValue()"/>
</c:forEach>
</c:if>
</jsp:include>
但这给了我一个错误:
Expecting "jsp:param" standard action with "name" and "value" attributes.
有人可以帮我弄清楚如何将这些参数从参数数组动态发送到文件吗?