在小程序中請求后端接口一般使用wx.request()方法,具體步驟如下:
wx.request({
url: 'https://api.example.com/yourApi', // 后端接口地址
method: 'GET', // 請求方法,可以是GET或POST等
data: {
key1: 'value1',
key2: 'value2'
},
success: function (res) {
console.log(res.data); // 成功獲取后端接口數據后的處理代碼
},
fail: function (error) {
console.log(error); // 請求失敗時的處理代碼
}
});
{
"app.json": {
"permission": {
"scope.userLocation": {
"desc": "你的位置信息將用于小程序位置展示"
},
"scope.address": {
"desc": "你的通訊地址將用于小程序收貨地址展示"
},
"scope.invoiceTitle": {
"desc": "你的抬頭將用于小程序發票"
},
"scope.record": {
"desc": "你的語音記錄將用于小程序語音識別"
},
"scope.writePhotosAlbum": {
"desc": "你的圖片信息將用于小程序相冊展示"
}
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": false
}
}