微信小程序访问本地接口失败,这是为什么?
代码如下:
onLoad(options) {
var _this = this;
wx.request({
url: 'http:localhost:8083/dd/appApi/home',
method: 'get',
data: {},
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success: function (res) {
console.log(res.data);
_this.setData({
finishedInfo: res.data
})
},
fail: function (res) {
console.log('失败'+res.data);
}
})
},
1、后台确定启动了
2、用的测试号开发的,跟这个会有关系吗?
3、本地设置也改了