如果您在调用shoplist()
. 因为 javascript 通过引用传递数组,并且只有一个引用进入shopitems
数组,所以当您在将 ids 数组传递给第二次调用之前修改 ids 数组时shoplist()
,您也无意中进行了修改shopitems[0]
。如果您shoplist()
第一次和第二次调用它的每个参数都是完全独立的数组,则不会出现此问题,但如果第二次调用只是传递了对第一个数组的修改,则会出现此问题。
快速说明是这样的:
// this will not have the problem because each call to shoplist
// is passing a completely separate array
var list = [1];
shoplist(list);
list = [1,2]; // create new array
shoplist(list); // shoplist is [[1], [1,2]]
// this will have the problem because they are the same array
var list = [1];
shoplist(list);
list.push(2); // modify first array
shoplist(list); // shoplist is [[1,2], [1,2]] and both array elements are actually the same array
更详细的解释:.push(ids)
将任何内容ids
作为新项目添加到shopitems
数组的末尾。因此,每次调用 shoplist 时,您都会在 shopitems 末尾获得一个新商品。但是,由于您要添加的项目是一个数组,它会添加对该数组的引用,而不是该数组的副本。如果您随后更改了该数组,则 shopitems 数组条目将指向该数组的更改版本。
你可以在这段代码中看到:
var x = [];
var list = [];
x.push(1); // contains contains [1]
list.push(x); // list is [[1]]
x.push(2); // x is [1,2]
list.push(x); // list is [[1,2], [1,2]] (contains two references to x)
在此代码示例中, list 将包含两个元素,每个元素将指向x
其 contains的同一个实时版本[1,2]
。
这是因为默认情况下,javascript 会传递数组和对象之类的引用。当您将数组元素推送到容器数组中时,它不会将该变量的静态副本放入数组中。它放置了一个指向原始变量的指针。如果您随后更改原始变量,则该更改也会反映在数组中。
要将第二个条目与第一个条目分开,您需要有意识地制作第一个数组的副本并将该副本推送到容器数组中,或者您需要从头开始创建一个新数组并将其推送到容器数组中。
例如,以下是在容器数组中创建两个独立元素的几种方法:
var x = [];
var list = [];
x.push(1); // contains contains [1]
list.push(x); // list is [[1]]
x = []; // set x to a new array (the old version of x is still in list)
x.push(1); // x is [1]
x.push(2); // x is [1,2]
list.push(x); // list is [[1], [1,2]] (contains two separate items)
或者,复制一份x
:
var x = [];
var list = [];
x.push(1); // contains contains [1]
list.push(x); // list is [[1]]
x = x.slice(0); // make a copy of x, the old version of x is still in list
x.push(1); // x is [1]
x.push(2); // x is [1,2]
list.push(x); // list is [[1], [1,2]] (contains two separate items)
这里要记住的重要一点是,在 javascript 中,对象赋值或数组赋值不会复制。它只是分配一个指向原始数据结构的指针。如果您更改原始数据结构,这将反映在您所做的任何分配中。
如果您是副本,则必须显式制作新数组或显式制作副本。