我有一个名为 searchReportButton 的按钮。单击此按钮时,我需要使用 ajax Web 方法“Error.aspx/CheckSessionExpiry”从服务器检查会话值。这是在 checkSession javascript 函数中完成的。checkSession 现在没有返回任何东西——而是根据结果处理所需的操作(重定向到错误页面)。
- 我需要将 ajax web 方法的结果返回给 Main Caller。我们怎样才能做到这一点?
- 我是否需要将剩余的代码(来自主调用者)移动到成功回调中?
主要来电者
searchReportButton.click(function () {
checkSession();
//Remainging Code
});
帮手
function checkSession() {
var win = 101;
$.ajax(
{
type: "POST",
url: "Error.aspx/CheckSessionExpiry",
data: '{"winNumber": "' + win + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: handleSessionResult
}
);
}
结果助手
function handleSessionResult(result) {
if (result.hasOwnProperty("d"))
{
result = result.d
}
if (result == "ACTIVE")
{
window.location.href("Error.aspx");
return false;
}
//alert(result);
}
参考: