The promise of jquery

Source: Internet
Author: User

We all have this demand:

I need a few AJAX requests and the data is all successfully fetched before it can be loaded.

Previous practice:

1, nesting in the success callback, which makes the code difficult to read.

2, asynchronous synchronous, sequential execution, not in line with the original purpose of Ajax, efficiency is not high.

3, write a callback function, statistics all requests are completed after execution. Seems a bit cumbersome.

jquery now provides such a feature.

$.when ($.ajax (URL1)

, $.ajax (URL2))

. Then (function success (ARG1,AGR2) {

ARG1[0],ARG2[0] is the data returned by two requests

},function error (ERR) {

});

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.