87,994
社区成员
发帖
与我相关
我的任务
分享
const _this = this;
var aa={'bb':'55','cc':'66'};
wx.request({
url: app.globalData.url.saveEmplInfo,
data: {
emplInfoData: aa
},
method: 'GET',
header: {
'content-type': 'application/json' //默认值
},
success: function (res) {
//接收返回结果
console.log(res.data);
}
})