发起get/post请求

2020-05-03  本文已影响0人  苍老师的眼泪

get请求:

  submitPhoneCode() {
    wx.request({
      url: 'http://localhost:8080/upload',
      method: "get",  //如果是post请求,修改这一个地方就可以了
      data: {
        phone: this.data.phone,
        code: this.data.code
      },
      success(res) {
        console.log(res)
      },
      fail(err) {

      },

    })
  },

post请求:


上一篇下一篇

猜你喜欢

热点阅读