这是我的Spring MVC Controller代码:
session.setAttribute("YourProperty", "arg1");
如何使用JavaScript访问存储在HttpSession中的属性?
我尝试过使用此代码:
var property = <%=session.getAttribute("YourProperty")%>;
alert(property);
但它返回null。
谢谢
答案 0 :(得分:4)
var property="<%=session.getAttribute("MyProperty")%>";
alert(property);
属性名称应该匹配,因为您要添加字符串,所以应该在"
周围添加<%=session.getAttribute("MyProperty")%>
,代码会提醒arg1
。