我有一个包含1个项目的数组。它看起来像这样......
[ { one: "one", two: "two" } ]
我想添加到对象,所以它看起来像这样......
[ { one: "one", two: "two", three: "three" } ]
我该怎么做?
答案 0 :(得分:2)
基本Javascript。
var array = [ { one: "one", two: "two" } ];
array[0].three = 'three';
表示array
在索引0
设置three
等于"three"
PS:这个,你也不是在使用JSON