小程序模板網(wǎng)

Charlotte微信小程序開(kāi)發(fā)(二)--網(wǎng)絡(luò)請(qǐng)求

發(fā)布時(shí)間:2018-04-23 12:13 所屬欄目:小程序開(kāi)發(fā)教程

微信小程序中request函數(shù)的封裝

將函數(shù)寫(xiě)在app.js中,在其他頁(yè)面引用函數(shù):

//http方法,寫(xiě)在app.js頁(yè)面


----------


  http: function (msg) {
    return new Promise((resolve, reject) => {
      wx.request({
        url: msg.url,
        data: msg.data,
        method: msg.method,
        success: function (res) {
          if (res.data.status === 0) resolve(res.data);
          else reject(res.data);
        },
        fail: function (res) {
          console.log(res);
        }
      })
    })
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
let app=getApp();//引入app.js 文件


----------


let msg = {
    url: address,
    data: { "data": token },
    method: 'POST'
  }
  app.http(msg).then((data)=>{
     consoel.log(data.data);
  },((reject)=>{

  }))


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開(kāi)源 碼云倉(cāng)庫(kù):starfork
本文地址:http://22321a.com/wxmini/doc/course/23935.html 復(fù)制鏈接 如需定制請(qǐng)聯(lián)系易優(yōu)客服咨詢(xún):800182392 點(diǎn)擊咨詢(xún)
QQ在線(xiàn)咨詢(xún)