promise可以级联,但是不要忘记在then()中return一个Promise,否则将会并发执行。
do_a()
.then(function(){
do_b()
})
.then(function(){
do_c()
})
VS.
do_a()
.then(function(){
return do_b()
})
.then(function(){
})
切记!
promise可以级联,但是不要忘记在then()中return一个Promise,否则将会并发执行。
do_a()
.then(function(){
do_b()
})
.then(function(){
do_c()
})
VS.
do_a()
.then(function(){
return do_b()
})
.then(function(){
})
切记!
Author: Ryan.King
Link: http://ryanking8215.github.io/2014/promise-careful/
本文采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可