wx.request() 中的url能否使用本地localhost测试
wx.request() 中的url能否使用本地localhost测试,求大神指导,跪谢!!!!
我写的
wx.request({
url: ‘http://localhost/weixin/index.php’,
data: {x:123,y:345},
method: ‘POST’,
header: {‘content-type’: ‘application/x-www-form-urlencoded’},
success:function(res) {
console.log(‘submit success’);
},
fail:function(res){
console.log(‘submit fail’);
},
complete:function(res){
console.log(‘submit complete’);
}
})
7 回复