微信小程序处理后台返回json

最近看微信小程序连接java后台,在网上找了个例子以下,但是可以调用起后台来就是取不到数据,

bindtest: function () {
wx.request({
url: 'https://localhost:8443/spring4/user/wei.do',
// data: {
// username: '001',
// password: 'abc'
// },
// method: 'GET',
header: {
'Content-Type': 'application/json'
},
success: function (res) {
var jsonText = JSON.parse(res.data);
},
fail: function (res) {
console.log( ".....fail.....");
}
})
},
报404错误
折腾很久发现
header: {
"Content-Type": "json"
},
改成这样就可以了

你可能感兴趣的:(微信小程序处理后台返回json)