我想检查EL中request
参数的值。
假设有一个像page.jsp?par1=test
这样的网址,我尝试了类似的内容:
<c:if test='{"test".equals(par1)} >
[...]
</c:if>
但我没有成功。
那么,如何在EL中访问请求参数?
答案 0 :(得分:0)
尝试这样的事情:
<c:set var="test" value="yourValue"/>
<c:if test="${test==param.par1}">
do what you want
</c:if>