问题描述后台没有响应问题出现的环境背景及自己尝试过哪些方法相关代码// 请把代码文本粘贴到下方(请勿用图片代替代码)wx.request({ url: getApp().globalData.url + '/upUserInfo', data: {
userType: this.data.identity,
babyName: this.data.babyName,
avatarUrl: this.data.avatarUrl,
birthday: this.data.birthday,
gender: this.data.gender,
educationStage: this.data.educationStage
},
header: {
Authorization: getApp().globalData.token
},
success: function (res) { if (res.data.code == 100) {
console.log(res)
}
}
})你期待的结果是什么?实际看到的错误信息又是什么?
添加回答
举报
0/150
提交
取消