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.
我有两个 JSP:A 和 BAjsp 是一个容器 jsp,在使用 jQuery/Javascript 加载 A.jsp 时,我正在通过 Ajax 加载 B.jsp。
我需要将 B.jsp 中加载的值与存储在我的数据库中的一组变量进行比较。(它们只需要获取一次,因为它们不会改变。)
最好的方法是什么?
在 A.jsp 中,将变量包含为会话变量。
<s:set var="var1" value="Obj1" scope="session"/>
在 B.jsp 我使用变量
<s:if test="%{ajaxVal < var1.val1}" />true</s:if>