Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个我设置的变量:
<c:set var="value" value="<%=bean.getValue() %>"/>
其中 bean 是我传入的一个对象。现在我想将这个变量 value 用作 bean,以便我可以在<%=>标签中使用它。
<%=>
有没有办法使用 c:set 设置的变量在 a 中使用<jsp:useBean>?
<jsp:useBean>
这应该工作:
<jsp:useBean id="bean" class="com....." scope="request"> <jsp:setProperty name="bean" property="*"/> </jsp:useBean> ... <c:set var="value" value="${bean.value}"/>
还是您的意思是相反的(从 el 到 jsp:usebean)?