小程序异步问题

时间:2019-08-13 15:33:40   收藏:0   阅读:120

test: function () {

    let param = {

      Channel: "H5",

      ProductId: this.productId,

      Version: 70100

    };

    console.log(2);

    let url = "xxxxx";

    return new Promise((resolve, reject) => {

      cwx.request({

        url: url,

        data: param,

        header: {

          ‘content-type‘: ‘application/json‘

        },

        method: ‘POST‘,

        success: function (res) {

          console.log(3);

          resolve(res);

        },

        fail: function (ex) { 

          reject(ex);

        }

      })

    });

  },

 

  onShow: function(){

    console.log(1);

    this.test()

    .then((res)=>{

      console.log(4);

    })

    .catch((ex)=>{

      //异常处理

    })

  },

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!