小编典典

是否可以在jsp scriptlet中访问struts2变量?

jsp

是否可以在jsp scriptlet中访问struts2变量?

如果我有struts2变量,例如

<s:set var="test" value="%{'true'}"/>

我可以在JSP脚本中使用变量“ test”吗?

如是。这怎么可能?

任何人都可以提出一些想法吗?

谢谢。


阅读 260

收藏
2020-06-08

共1个答案

小编典典

<jsp:useBean id="test" class="java.lang.String" scope="request"/>

<%
         test = "false";
%>

1. outside scriptlet: <c:out value="${test}"/>   <!-- will not print anything -->

<%
    out.println("2. in scriptlet: " + test);     // will print false
%>

<c:set var="test" value="true" />

3. outside scriptlet: <c:out value="${test}"/>   <!-- will print true -->

<%
    out.println("4. in scriptlet: " + test);     // will print false
%>
2020-06-08