我有数组数组,我想在javascript中向内部数组添加数据。 假设我的代码如下:
self.basketsArray = [];
self.newCollection = {
books: []
};
self.basketsArray.push(self.newCollection);
function addNewCollection(){
self.basketsArray.push(self.newCollection);
}
function addDataToArray(index,index2){
self.basketsArray[index].books.splice(index2, 1, data);
}
事实上,当我想将数据添加到内部数组时,它会添加到第一个内部数组。我的问题是什么?
答案 0 :(得分:1)
在javascript中,您通过引用传递对象和函数,其他只是通过值传递。您可以直接传递新对象或克隆它。
// Directly push a new object:
self.basketsArray.push({books: []});
// Clone it, using Angular
self.basketsArray.push(angular.copy({}, self.newCollection););
// Clone it, using Lodash
self.basketsArray.push(_.clone(self.newCollection));
请注意,这些库通常会提出浅层或深层克隆方法。