storeChildren : function(coreid, data) {
$.each(data, function(id, type) {
$.core.children[coreid] = {};
$.core.children[coreid]['id'] = id;
$.core.children[coreid]['type'] = type;
});
}
($.core.children 是一个对象)
我希望得到的数组/对象(我更喜欢对象)看起来像这样(请原谅我的 PHP 伪代码):
array(coreid => array(id=>type, id=>type, id=>type));
我知道每次运行循环时我都会覆盖 $.core.children[coreid] 我只是不知道如何修复它。