当前位置 : 主页 > 编程语言 > java >

jsp中 jstl el c标签混合使用

来源:互联网 收集:自由互联 发布时间:2021-06-25
jsp中直接使用常量问题 无法直接在c标签中直接同时使用jstl el标签问题,解决方案如下: %@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" % % request.setAttribute("agentType", FinanceConstant.FINANCE

jsp中直接使用常量问题

无法直接在c标签中直接同时使用jstl el标签问题,解决方案如下:


<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<%
request.setAttribute("agentType", FinanceConstant.FINANCE_AGENT_TYPE);
request.setAttribute("openType", FinanceConstant.FINANCE_OPEN_TYPE);

%>


<c:choose>    <c:when test="${receive[1] == agentType }">aaa</c:when>    <c:when test="${receive[1] == openType }">bbb</c:when>    </c:choose>

上一篇:JSP页面传参中文乱码
下一篇:JSP的介绍
网友评论