小程式之請求介面
阿新 • • 發佈:2019-01-10
舉個栗子
onLoad: function (options) {
wx.showToast({ //顯示訊息提示框 此處是提升使用者體驗的作用
title: '資料載入中',
icon: 'loading',
});
wx.request({
url: 'test/test', //請求介面的url
method: 'GET', //請求方式
data: {},//請求引數
header: {
'content-type' : 'application/json' // 預設值
},
complete() { //請求結束後隱藏 loading 提示框
wx.hideLoading();
},
success: res => {
this.setData({
data: res.data,
})
}
});
});
具體各個OBJECT引數說明還是得看看文件,我就不照搬了。:)