原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处
java与后台交互url怎么写?
findDay: function (e) {
var that = this;
wx.request({
url: ‘https://localhost:8443/xiaochengxu/addBill.dovation?a=getPortalCate',//请求地址
data: {//发送给后台的数据
name: “bella”,
age: 20,
password:”jiazongrong”
},
header: {//请求头
“Content-Type”: “applciation/json”
},
method: “GET”,//get为默认方法/POST
success: function (res) {
console.log(res.data);//res.data相当于ajax里面的data,为后台返回的数据
that.setData({//如果在sucess直接写this就变成了wx.request()的this了.必须为getdata函数的this,不然无法重置调用函数
logs: res.data.result
})
},
fail: function (err) {
console.log('submit fail');
},//请求失败
complete: function () {
console.log('submit complete');
}//请求完成后执行的函数
})
}
?????????????