Ajax Operation Global Monitoring, user session failure resolution _AJAX related

Source: Internet
Author: User

Ajax Operation Global Monitoring, user session failure of the solution

jquery (function ($) {
//Back up jquery Ajax method 
var _ajax = $.ajax;
Rewrite the Ajax method to first determine that the login is executing the success function 
$.ajax = function (opt) {
var _success = opt && opt.success | | function (A, b) {};
var _opt = $.extend (opt, {
success:function (data, textstatus) {

try {

if (Data.sessionstatus = = False) {
  //user failure to operate
//return;
} 

catch (e) {

}
_success (data, textstatus);
}
});
_ajax (_opt);
};

The above Ajax operation of the global Monitoring, user session failure to solve the problem is a small series to share all the content, hope to give you a reference, but also hope that we support the cloud-dwelling community.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.