String json1 = new Gson().toJson(list);
System.out.println(json1);
request.getSession().setAttribute("json1", json1);
我检查了它打印的日志字符串:["090856","056986"]
在JSP中,我在脚本
中写了一些内容var n = '<%= session.getAttribute("json1") %>';
alert(n);
警告显示090856,056986
。
为什么这种行为不应显示["090856","056986"]
。
有时也会出现这样的情况