原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处
个人在使用社区API put数据的时候发现返回102:参数错误 提示,代码如下:
wx.request({
url: 'https://api.wxappclub.com/put',
data: {
appkey: appKey,
type: 'bookLibrary',
key: "test",
value: {emono:"FE716",age:"18"}
},
header: {
'content-type': 'application/json'
},
success: function (res) {
console.log(res);
}
});
然后参考了toBeMN的帖子,修改代码如下:
http://www.wxappclub.com/topic/116
wx.request({
url: 'https://api.wxappclub.com/put',
data: {
appkey: appKey,
type: 'bookLibrary',
key: "test",
value: {emono:"FE716",age:"18"}
},
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success: function (res) {
console.log(res);
}
});
数据是可以存进去,但是value显示的是[object Object],请问大家是怎么把一个复杂结构的json存到value内的呢?