我有MySQL表,列类型为JSON
{
"type": "1",
"local": "1",
"maker": "1"
}
我想追加JSON数组
[{
"type": "1",
"local": "1",
"maker": "1"
},
{
"type": "2",
"local": "2",
"maker": "2"
}]
我如何使用Strongloop追加?我使用了方法PUT / ID,它替换了我的数组,如
{
"type": "2",
"local": "2",
"maker": "2"
}
我不想GET / ID我的数组并合并new和send de PUT。
有可能进行一次吗?
答案 0 :(得分:0)
看到您已将JavaScript
选为标记,您可以使用Array.prototype.concat()
有关详细信息,请参阅Array.prototype.concat()文档。
var x = {
"type": "1",
"local": "1",
"maker": "1"
};
var y = {
"type": "2",
"local": "2",
"maker": "2"
}
var result = [].concat(x).concat(y);
console.log(result);