1. 程式人生 > >angular.copy(深拷貝)基本用法

angular.copy(深拷貝)基本用法

對於一個物件陣列

$scope.content = [
    {name:1},
    {name:20}
]

第一種copy方法

$scope.content2 = angular.copy($scope.content)
console.log($scope.content2);

第二種copy方法

angular.copy(source, [destination]);

引數名稱引數型別描述
source*被copy的物件. 可以使任意型別, 包括null和undefined.
destination (optional)Object,arraycopy去的目的地. 可以省略, 如果不省略, 其必須和source是同類