欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

小程序调取接口代码实例

程序员文章站 2022-06-04 14:24:39
...
wx.request({
      url: app.globalData.host + '/api/v1/giftCoupons/findById?giftCouponId='+ options.id,
      method: 'GET', //方法分GET和POST,根据需要写
      header: { //定死的格式,不用改,照敲就好
        // 'Content-Type': 'application/json'
        'Authorization': "Bearer " + wx.getStorageSync('token')
      },
      success: function(res) { //这里写调用接口成功之后所运行的函数
        // that.resdata = res.data.data;
        if (res.data.status == 200) {
          that.resdata = res.data.data;
          console.log(that.resdata,"zhuanzenglkink");
          console.log(that.resdata.goodImage,"tupian");
          that.setData({
            resdata: that.resdata,
          })
        }

      },
      fail: function(res) { //这里写调用接口失败之后所运行的函数
        console.log('.........fail..........');
      }
    })
相关标签: 小程序 小程序