A workaround for using AJAX to assign a global variable failure exception in jquery _jquery

Source: Internet
Author: User

We're using jquery ajax to extract the data from the background after we want to assign it to the global variable, but how can not be assigned, why?

The reason is actually very simple, we use the AJAX is asynchronous operation, that is, in your assignment when the data has not been extracted, you certainly do not, so as long as the change to sync operation on the line ~

Method 1: Set up synchronization to perform AJAX operations first

Set Ajax asynchronously to false in the global or a required function, which is synchronous
$.ajaxsetup ({ 
async:false});

Then do your AJAX operations
$.post (address, parameters, function (data, status) {if (status = = "Success") {//Assign to global variable}else{ 
alert ("Wrong" );}});

Method 2: Direct use of $.ajax

$.ajax ({ 
type: "Post", 
URL: Address, 
data: "parameter" + parameter value, 
async:false, 
success:function (data) {/ Assign value to global variable;};

Instance code:

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.