我有一个保存警报的对象及其中的一些信息:
var alerts = {
1: { app: 'helloworld', message: 'message' },
2: { app: 'helloagain', message: 'another message' }
}
除此之外,我还有一个变量,说明有多少个警报,alertNo
。我的问题是,当我去添加新警报时,有没有办法将警报附加到alerts
对象上?
答案 0 :(得分:215)
如何将警报存储为数组中的记录而不是单个对象的属性?
var alerts = [
{num : 1, app:'helloworld',message:'message'},
{num : 2, app:'helloagain',message:'another message'}
]
然后添加一个,只需使用push
:
alerts.push({num : 3, app:'helloagain_again',message:'yet another message'});
答案 1 :(得分:60)
jQuery $.extend(obj1, obj2)
会为你合并2个对象,但你应该使用数组。
var alertsObj = {
1: {app:'helloworld','message'},
2: {app:'helloagain',message:'another message'}
};
var alertArr = [
{app:'helloworld','message'},
{app:'helloagain',message:'another message'}
];
var newAlert = {app:'new',message:'message'};
$.extend(alertsObj, newAlert);
alertArr.push(newAlert);
答案 2 :(得分:23)
您可以使用Object.assign()进行此操作。有时您需要一个数组,但是当使用需要单个JSON对象的函数(例如OData调用)时,我发现此方法比创建仅将其拆包的数组简单。
var alerts = {
1: {app:'helloworld',message:'message'},
2: {app:'helloagain',message:'another message'}
}
alerts = Object.assign({3: {app:'helloagain_again',message:'yet another message'}}, alerts)
//Result:
console.log(alerts)
{
1: {app:'helloworld',message:'message'},
2: {app:'helloagain',message:'another message'}
3: {app: "helloagain_again",message: "yet another message"}
}
编辑:要解决有关获取下一个键的注释,您可以使用Object.keys()函数获取一个键数组-有关增加键的示例,请参见Vadi的答案。同样,您可以使用Object.values()获取所有值,并使用Object.entries()获取键值对。
var alerts = {
1: {app:'helloworld',message:'message'},
2: {app:'helloagain',message:'another message'}
}
console.log(Object.keys(alerts))
// Output
Array [ "1", "2" ]
答案 3 :(得分:6)
与其他指出的答案一样,您可能会发现使用数组更容易。
如果不是:
['well', 'come', 'going', 'other', 'D', 'other','other' 'other']
试一试:
答案 4 :(得分:4)
你应该真的使用一系列警报建议,但是否则添加到你提到的对象会是这样的:
alerts[3]={"app":"goodbyeworld","message":"cya"};
但是,因为你不应该使用文字数字作为名称引用所有内容并与
一起使用alerts['3']={"app":"goodbyeworld","message":"cya"};
或者你可以把它变成一个对象数组。
访问它看起来像
alerts['1'].app
=> "helloworld"
答案 5 :(得分:3)
您是否有能力将最外层的结构更改为数组?所以它看起来像这样
var alerts = [{"app":"helloworld","message":null},{"app":"helloagain","message":"another message"}];
所以当你需要添加一个时,你可以将它推到数组
alerts.push( {"app":"goodbyeworld","message":"cya"} );
然后,您有一个内置的从零开始的索引,用于枚举错误。
答案 6 :(得分:1)
您可以按以下方式使用传播语法。
var alerts = {
1: { app: 'helloworld', message: 'message' },
2: { app: 'helloagain', message: 'another message' }
}
alerts = {...alerts, 3: {app: 'hey there', message: 'another message'} }
答案 7 :(得分:0)
作为替代方案,在ES6中,可以使用扩展语法。 ${Object.keys(alerts).length + 1}
返回下一个id
进行提醒。
let alerts = {
1: {app:'helloworld',message:'message'},
2: {app:'helloagain',message:'another message'}
};
alerts = {
...alerts,
[`${Object.keys(alerts).length + 1}`]:
{
app: `helloagain${Object.keys(alerts).length + 1}`,message: 'next message'
}
};
console.log(alerts);
答案 8 :(得分:0)
现在,有了ES6,我们有了一个非常强大的传播运算符(... Object),可以使这项工作非常容易。可以完成以下操作:
let alerts = {
1: { app: 'helloworld', message: 'message' },
2: { app: 'helloagain', message: 'another message' }
}
//now suppose you want to add another key called alertNo. with value 2 in the alerts object.
alerts = {
alertNo: 2,
...alerts
}
就这样。它将添加您想要的密钥。希望这会有所帮助!
答案 9 :(得分:0)
使用ES6更轻松:
let exampleObj = {
arg1: {
subArg1: 1,
subArg2: 2,
},
arg2: {
subArg1: 1,
subArg2: 2,
}
};
exampleObj.arg3 = {
subArg1: 1,
subArg2: 2,
};
console.log(exampleObj);
{
arg1: {subArg1: 1, subArg2: 2}
arg2: {subArg1: 1, subArg2: 2}
arg3: {subArg1: 1, subArg2: 2}
}
答案 10 :(得分:0)
对不起,由于我的声誉,我无法评论您的答案!...因此,如果您想修改对象的结构,您必须做,就像Thane Plummer所说的那样,但是,如果您不在乎将物品放置在哪里,则可以使用一个小技巧:如果您不指定插入编号,则会将其插入第一个位置。
如果您想将一个Json对象传递给mongoDB函数调用,并在收到的条件内插入一个新键,那么这太好了。在这种情况下,我将从代码中的变量中插入一些项目myUid和一些信息:
// From backend or anywhere
let myUid = { _id: 'userid128344'};
// ..
// ..
let myrequest = { _id: '5d8c94a9f629620ea54ccaea'};
const answer = findWithUid( myrequest).exec();
// ..
// ..
function findWithUid( conditions) {
const cond_uid = Object.assign({uid: myUid}, conditions);
// the object cond_uid now is:
// {uid: 'userid128344', _id: '5d8c94a9f629620ea54ccaea'}
// so you can pass the new object Json completly with the new key
return myModel.find(cond_uid).exec();
}
答案 11 :(得分:0)
[Javascript]玩了些琐碎的扑克游戏后,这对我有用:
let dateEvents = (
{
'Count': 2,
'Items': [
{
'LastPostedDateTime': {
"S": "10/16/2019 11:04:59"
}
},
{
'LastPostedDateTime': {
"S": "10/30/2019 21:41:39"
}
}
],
}
);
console.log('dateEvents', dateEvents);
我需要解决的问题是,我可能有许多事件,并且它们都具有相同的名称:LastPostedDateTime唯一不同的是日期和时间。
答案 12 :(得分:-1)
试试这个:
alerts.splice(0,0,{"app":"goodbyeworld","message":"cya"});
效果很好,它会将它添加到数组的开头。