当前位置:   article > 正文

微信小程序 ajax请求同步_微信小程同步请求

微信小程同步请求

请求方法

call_fun: function (args) {
  var url = app.globalData.api_url + args.name;

  return new Promise((resolve, reject) => {
    wx.request({
      url: url,
      method: 'POST',
      data: {
        ...args.data
      },
      success: resolve,
      fail: reject,
    })
  })
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

调用

load_sync: async function () {
  console.log(1);

  await app.call_fun({
    name: 'm=Test&a=test',
    data: {
      test: 'test',
      test2: 'test2',
    }
  }).then(function (params) {
    console.log(params);
  });

  console.log(2);
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/147958
推荐阅读
相关标签
  

闽ICP备14008679号