我正在尝试像这样动态构建关联数组。 我该如何构建它?具有以下预期输出?
"快乐":[1,2,3,4,5], "愤怒":[6,7,8,9,10]
spring
答案 0 :(得分:0)
在JavaScript世界中,关联数组由文字对象表示:
// declaration of a new literal object
var videos = {};
// test if the key is already setted or not
if(!videos.hasOwnProperty(mood)){
// if not, initiate a new array
videos[mood] = [headerVideo];
}else{
// if yes, add add the value to the existing array
videos[mood].push(headerVideo);
}