我有两个像
var json1 = [{id:1, name: 'xxx' ...}] var json2 = [{id:2, name: 'xyz' ...}]
我希望它们合并成单个数组
var finalObj = [{id:1, name: 'xxx' ...},{id:2, name: 'xyz' ...}]
您需要该concat方法。
concat
var finalObj = json1.concat(json2);