美文网首页
微信小程序请求接口格式

微信小程序请求接口格式

作者: 养猫人_d545 | 来源:发表于2018-06-03 15:41 被阅读0次

 //页面的初始数据

  data: {

    data1:""

  },

//生命周期函数--监听页面加载

onLoad:function (e) {

    var that = this;

    wx.request({

      url: 'https://api.it120.cc/small4/shop/goods/list',

      method: "post",

      success: function (res) {

        console.log(res)

        that.setData({ data1: res.data })

      }

    })

  },

相关文章

网友评论

      本文标题:微信小程序请求接口格式

      本文链接:https://www.haomeiwen.com/subject/lwgkcftx.html