使用JavaScript访问存储在HttpSession中的值

时间:2013-11-22 07:44:36

标签: javascript jsp servlets httpsession

这是我的Spring MVC Controller代码:

session.setAttribute("YourProperty", "arg1");

如何使用JavaScript访问存储在HttpSession中的属性?

我尝试过使用此代码:

var property = <%=session.getAttribute("YourProperty")%>;
alert(property);

但它返回null。

谢谢

1 个答案:

答案 0 :(得分:4)

var property="<%=session.getAttribute("MyProperty")%>";
alert(property);

属性名称应该匹配,因为您要添加字符串,所以应该在"周围添加<%=session.getAttribute("MyProperty")%>,代码会提醒arg1