gpt4 book ai didi

javascript - Spring应用程序在登录后调用最后一个ajax调用

转载 作者:行者123 更新时间:2023-11-30 07:32:40 25 4
gpt4 key购买 nike

过去几天我面临着大问题。

当我在应用程序中搜索任何值时,如果 session 已过期,我的应用程序将重定向到完美的登录页面。

但是当我再次登录时,应用程序显示最后一个 GET ajax 调用(我正在搜索)并在浏览器中显示结果 JSON。但它应该显示主页。

我的代码如下;

// Document Ready() Starts

$("#grid_id").jqGrid({
url :"search/getHouseholdHistoryList",
async : false,
type: 'GET',
datatype: 'json',
postData: {
searchHHID: function() { return $("#txt_SearchID").val(); },
filterKey: function() { return $('#ulSearch_TypeOfID li.selected').attr('value') }
},
colNames:mainGridColNames,
colModel: [
{ name:'incidentID', index:'incidentID', width:110,sortable:true},
{ name:'incidentCreatedDate', index:'incidentCreatedDate', width:160, sortable:false},
{ name:'incidentSummary', index:'incidentSummary', width:482,sortable:false},
{ name:'incidentStatus', index:'incidentStatus', width:120, sortable:false},
{ name:'actionLink', index:'actionLink', width:100, sortable:false}
],
viewrecords: true,
//autowidth:true,
width: '100%',
height:'150',
rowNum: 10,
rowList:[10,20,30],
rownumbers: false,
sortorder: "desc",
ignoreCase: true,
loadonce: true,
jsonReader: { repeatitems: false },
pager: 'gridpager',
direction:'ltr'
}).jqGrid('navGrid','gridpager',
{edit:false, add:false, del:false, search:true, refresh:true});

//Document Ready() Ends

我正在使用-Spring MVC。-JSP-Jquery- Ajax

如果还有其他需要,请告诉我。

最佳答案

听起来您是在从过期 session 中查看应用程序时提交 ajax 请求。因此,一旦到达安全的“search/getHouseholdHistoryList”端点,Spring Security 就会提示您登录以显示结果。它不知道您在上一个 session (现已过期)中在应用程序中停止的位置。因此它所知道的就是将“search/getHouseholdHistoryList”的结果返回到您的浏览器。

您需要在提交请求之前检查您的 session 是否已过期,并将页面重定向到登录页面。由于我不使用 JSP,因此我对 Spring Security JSP 标记不太熟悉,但必须有一种方法以某种形式检查当前 session 的有效性并采取相应的操作。

关于javascript - Spring应用程序在登录后调用最后一个ajax调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35866241/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com