在小程序中请求后端接口一般使用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
}
}