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请求:
网友评论