是的,我已经知道了
json.newvalue = 'newvalue'
但我不是在寻找...... 我有一个空的JSON
plugins = {};
现在我需要添加5个项目,例如:
{"name":"test"}
{"name":"test2"}
我正在寻找这样的事情:plugins.add({"name":"test"})
答案 0 :(得分:0)
首先,json是对象的字符串表示,代码中包含的是对象。但是,您似乎不需要JavaScript对象,而是数组。
var plugins = [];
plugins.push({"name":"test"});
plugins.push({"name":"test2"});
插件现在将
[
{"name", "test"},
{"name", "test2"}
]