var data = JSON.stringify(param)
wx.request({
url: webConfig.getApi('anwer'),
header: {
'content-type': 'application/json',
'token': wx.getStorageSync('token')
},
data:data,
method: 'POST',
success: function (res) {
//返回内容
}
});
网友评论