java与后台交互url怎么写?

  • • 发表于 7年前
  • • 作者 贝小木
  • • 1394 人浏览
  • • 0 条评论
  • • 最后编辑时间 7年前
  • • 来自 [问 答]

原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处

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');
   }//请求完成后执行的函数
})

}
?????????????

分享到:
0条评论
Ctrl+Enter
作者

贝小木

贝小木

APP:0 帖子:9 回复:63 积分:151

已加入社区[2447]天

越幸运就得越努力

作者详情》
Top