Answers:
JSON代表JavaScript对象符号。JSON对象实际上是一个字符串,尚未转换为它表示的对象。
要将属性添加到JS中的现有对象,可以执行以下操作。
object["property"] = value;
要么
object.property = value;
如果您提供一些额外的信息,例如您在上下文中确实需要做的事情,那么您可能会得到一个更量身定制的答案。
object["property"] = value;
JSON.stringify
。
console.log
序列化。使用console.log(JSON. stringify(object))
。
var jsonObj = {
members:
{
host: "hostName",
viewers:
{
user1: "value1",
user2: "value2",
user3: "value3"
}
}
}
var i;
for(i=4; i<=8; i++){
var newUser = "user" + i;
var newValue = "value" + i;
jsonObj.members.viewers[newUser] = newValue ;
}
console.log(jsonObj);
从2015年开始使用ECMAScript,您可以使用扩展语法(…三个点):
let people = { id: 4 ,firstName: 'John'};
people = { ...people, secondName: 'Fogerty'};
它允许您添加子对象:
people = { ...people, city: { state: 'California' }};
结果将是:
{
"id": 4,
"firstName": "John",
"secondName": "Forget",
"city": {
"state": "California"
}
}
您还可以合并对象:
var mergedObj = { ...obj1, ...obj2 };
您也可以使用Object.assign
from ECMAScript 2015
。它还允许您一次添加嵌套属性。例如:
const myObject = {};
Object.assign(myObject, {
firstNewAttribute: {
nestedAttribute: 'woohoo!'
}
});
附言:这将不会覆盖具有分配属性的现有对象。而是将它们添加。但是,如果将值分配给现有属性,则它将被覆盖。
extend: function(){
if(arguments.length === 0){ return; }
var x = arguments.length === 1 ? this : arguments[0];
var y;
for(var i = 1, len = arguments.length; i < len; i++) {
y = arguments[i];
for(var key in y){
if(!(y[key] instanceof Function)){
x[key] = y[key];
}
}
};
return x;
}
扩展多个json对象(忽略函数):
extend({obj: 'hej'}, {obj2: 'helo'}, {obj3: {objinside: 'yes'}});
将导致一个json对象
您还可以使用扩展功能将新的json对象添加到json中,
var newJson = $.extend({}, {my:"json"}, {other:"json"});
// result -> {my: "json", other: "json"}
扩展功能的一个很好的选择是递归合并。只需将true值添加为第一个参数(有关更多选项,请阅读文档)。例,
var newJson = $.extend(true, {}, {
my:"json",
nestedJson: {a1:1, a2:2}
}, {
other:"json",
nestedJson: {b1:1, b2:2}
});
// result -> {my: "json", other: "json", nestedJson: {a1:1, a2:2, b1:1, b2:2}}
您还可以直接在对象文字中动态添加带有变量的属性。
const amountAttribute = 'amount';
const foo = {
[amountAttribute]: 1
};
foo[amountAttribute + "__more"] = 2;
结果是:
{
amount: 1,
amount__more: 2
}
用途$.extend()
的jQuery的,就像这样:
token = {_token:window.Laravel.csrfToken};
data = {v1:'asdass',v2:'sdfsdf'}
dat = $.extend(token,data);
希望您能为他们服务。
a
是JSON,a.s
正如您所定义的是一个字符串。现在,您尝试添加["subproperty"]
到字符串。您现在知道您为什么收到错误消息了吗?