1. 程式人生 > >微信小程式wx.request接收伺服器返回資訊

微信小程式wx.request接收伺服器返回資訊

Page({
onLoad: function () {
var that =this;//=====注意此處,要用that 指代this=====
wx.request({
url: 'https://43596470.qcloud.la/1.php',//此處填寫你後臺請求地址
method: 'GET',// OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
header: { 'Content-Type':'application/json'},// 設定請求的 header

success: function (res) {

// success
console.log(res.data);//在控制檯輸出向伺服器接收到的資料

that.setData({ //======不能直接寫this.setDate======

result11: res.data.message, //在相應的wxml頁面顯示接收到的資料
});

},

fail: function (res) {
// fail
},

complete: function (res) {
// complete
}
})

}

})