有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

使用javascript将会话从一个jsp页面传输到另一个jsp页面

在我的Spring java应用程序中,我试图使用javascript将检索到的java会话从一个页面转移到另一个页面,这是第一个jsp页面中的尝试

    <script>

//$(document).ready(

function getNotify() {

    <% String mp = (String) request.getSession(false).getAttribute("sound"); %>
        var mp = "<%= mp %>";
        console.log("value>>>>>>> "+mp);//returns the actual value

    <%  request.getSession().setAttribute("sound7", mp);  %>


}

setInterval(getNotify, 2000);

</script>

在第二个jsp中,我试图像这样检索会话,但它返回null

<% String postSound = (String) request.getSession(false).getAttribute("sound7"); %>
    var postSound = "<%= postSound %>";
    console.log("value of postSound>>>>>>> "+ postSound );

请说明如何使用上述方法将会话从jsp A传输到jsp B


共 (1) 个答案