promise两个参数的具体作用

Posted 会说话的mao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了promise两个参数的具体作用相关的知识,希望对你有一定的参考价值。

 Promise通常配合then方法来链式的使用,then方法里面第一个回调函数表示成功状态,也就是resolve通过.then调用,第二个是失败状态-reject通过.Cath调用,如果默认写一个参数的话,默认resolve

  代码会输出 Hello World!

通过封装函数实现.then用法

        function Print (ready) {
            return new Promise ((resolve,reject)=>{
                if(ready){
                    resolve("Hello World!");
                }else{
                    reject("Good bye!");
                }
            });
        }
        function print1 () {
            alert("World");
        }
        function print2 () {
            alert("!");
        }
        Print(true)
            .then(message=>{alert(message);})
            .then(print1)
            .then(print2)
复制代码

  通过封装函数实现.cath用法

    function Print (ready) {
            return new Promise ((resolve,reject)=>{
                if(ready){
                    resolve("Hello World!");
                }else{
                    reject("Good bye!");
                }
            });
        }
        function print1 () {
            alert("World");
        }
        function print2 () {
            alert("!");
        }
    function catch_error () {
      alert(‘error‘);
    }
        Print(false)
            .then(message=>{alert(message);})
            .then(print1)
            .then(print2)
        .catch(catch_error)
复制代码

 

以上是关于promise两个参数的具体作用的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段12——JavaScript的Promise对象

ES6之Promise

入门Promise的正确姿势

20promise与ajax jsonp

Visual Studio 自定义代码片段在方法定义的参数列表中不起作用

前端面试题之手写promise