Promises-小程序购物车结算

Posted wcu1117

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Promises-小程序购物车结算相关的知识,希望对你有一定的参考价值。

  //结算提交
  checkOut : function(){
      var price = this.data.sum;
      var user = wx.getStorageSync(‘userInfo‘);
      if (!user){
        wx.showModel({
          title:‘提示‘,
          content:‘请登录‘,
          success : function(){
            
          },
        })
      }
        
      let goods_id=0;
      var shop = this.data.shoppingCartInfo;
      
      wx.request({
        url: `${app.globalData.API_URL}`+‘/order‘,
        data:{
          goods_price : this.data.sum,
          user_id : user.mid
        },
        method: ‘POST‘,
        header :{
          ‘content-type‘:‘application/json‘
        },
        success : function(res){
          var order_id = res.data;
//引入异步
          var promises = new promise(function(resolve,reject){
            resolve(shop);
        })
          promises.then(function(value){
      //循环遍历 value.forEach(function(value){ console.log(value,‘foreach‘); wx.request({ url: `${app.globalData.API_URL}/ordergoods`, data: { order_id : order_id, goods_id : value.goodId, goods_name : value.goodName, goods_price : value.goodPrice, goods_num : value.goodSum, spec_key : value.goodImg }, method: ‘POST‘, success: function(res){ console.log(‘成功‘); }, fail: function(res) { }, }); }); }).catch(function(error){ console.error(error); }); } }) }

  


以上是关于Promises-小程序购物车结算的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 实现购物车结算

微信小程序——购物车结算

zara小程序怎么加入购物车

微信小程序结合原生JS实现电商模板

如何微信小程序下单

微信小程序支付流程