javascript - Doubts about Promise asynchronous operations, and how to write them more elegantly
大家讲道理
大家讲道理 2017-07-05 11:04:56
0
3
856
  • I have read a lot of technical posts about "promise" in the past few days. I am dazzled by them, and I have only a little knowledge of them and roughly understand their functions.

  • Let’s talk about the problem first. Ajax is used most in the project. There is a very unpleasant problem "multiple ajax dependency requests". Assume: R1 > R2( r1_result ) > R3( r2_result ),
    The most trouble-free way is to synchronize everything. The result is a terrible experience. Once the page freezes and the loading stops, the disgusting thing about using asynchronous operations is the layer after layer of callbacks, and more in the future. Depends on the operation.

  • Life is about tossing, so I went back to the first paragraph and read through various things, and saw a certain brother analyzing the principle of promise. Here is the code from this brother, http://malcolmyu. github.io/ma...

function Promise(fn) {
  var state = 'pending';
  var value;
  var deferred = null;

  function resolve(newValue) {
    if(newValue && typeof newValue.then === 'function') {
      newValue.then(resolve, reject);
      return;
    }
    state = 'resolved';
    value = newValue;

    if(deferred) {
      handle(deferred);
    }
  }

  function reject(reason) {
    state = 'rejected';
    value = reason;

    if(deferred) {
      handle(deferred);
    }
  }

  function handle(handler) {
    if(state === 'pending') {
      deferred = handler;
      return;
    }

    var handlerCallback;

    if(state === 'resolved') {
      handlerCallback = handler.onResolved;
    } else {
      handlerCallback = handler.onRejected;
    }

    if(!handlerCallback) {
      if(state === 'resolved') {
        handler.resolve(value);
      } else {
        handler.reject(value);
      }

      return;
    }

    var ret = handlerCallback(value);
    handler.resolve(ret);
  }

  this.then = function(onResolved, onRejected) {
    return new Promise(function(resolve, reject) {
      handle({
        onResolved: onResolved,
        onRejected: onRejected,
        resolve: resolve,
        reject: reject
      });
    });
  };

  fn(resolve, reject);
}
  • After reading it, I couldn't help but wonder again, then( function(){ do... } ), isn't this a callback? Could it be that the meaning of the tossing is to use syntax sugar (I don't believe it).

  • Existence is reasonable, so in the end, how to use promises reasonably and how to operate the ajax process more elegantly? By the way, how do you feel about using ( axios \ fetch.js )?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(3)
伊谢尔伦

Promise was born to solve asynchronous flow control. The core of its use is the then method;
then looks like a callback at first glance, but the characteristic of then is that it can handle exceptions and chain writing.
For example, a few The ajax request dependencies are as follows:

A1 -> A2;
Aa -> Ab;
Ab + Ac -> Ad;
A2 + Ad -> Ax;

If you use Promise, the code will be very clear
First prepare A1, A2, Aa, Ab, Ac, Ad, and Ax. They are all functions that return promise objects based on dependencies. I won’t write them anymore. Then you can watch the Promise performance. :

Promise.all([
    A1().then(A2),      //A1 -> A2
    Promise.all([
        Aa().then(Ab),  //Aa -> Ab
        Ac()            //Ac
    ]).then(Ad)         //Ab + Ac -> Ad;
]).then(Ax,Err)         //A2 + Ad -> Ax
.then(function(v){
//完成
})
A1, Aa and Ac have no dependencies and will be executed concurrently, and will continue based on the completion of dependencies.

No matter which Ajax problem occurs, the final Err event will be triggered to handle the error uniformly;
If you use a callback to write it Try it, either the efficiency is not good, or a bunch of code is added to the callback method to determine the dependency.

Reference code:

//首先准备好 A1,A2,Aa,Ab,Ac,Ad,Ax 都是基于回调的异步函数
var a2,ab,ac,ad;  //用来保存完成情况的变量
function runAx(){
    if(a2 == undefined || ad == undefined) return; //判断依赖
    Ax(a2,ad,function(e,v){
        //完成
    })
}
function runAd(){
    if(ab == undefined || ac == undefined) return; //判断依赖
    Ad(ab,ac,function(e,v){
        ad = v;
        runAx();
    })
}
A1(function(e,v){   
    A2(v,function(e,v){
        a2 = v;
        runAx();
    })
})
Aa(function(e,v){
    Ab(v,function(e,v){
        ab = v;
        runAd();
    })
})
Ac(function(e,v){
    ac = v;
    runAd();
})
The above code does not handle errors and is so long. If the dependencies were more complicated, you can imagine the amount of code and it is easy to write errors;

为情所困

Your understanding is basically correct. In fact, Promise is not much simplified, it just reduces the nesting level.

So, the ultimate solution is Async/Await, the questioner can check the information.

刘奇

Elegance is one then after another, straightening the callback Christmas tree shape. This is the contribution of Promises.

When I write a program, I need to nest seven or eight callbacks, and Promises is much better.

If you think writing then is too troublesome, then don’t use it, use Async/Await

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!