angular,,以及深度拷贝问题;JSON.parse,JSON.stringify灵活运用
Posted janice_jia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular,,以及深度拷贝问题;JSON.parse,JSON.stringify灵活运用相关的知识,希望对你有一定的参考价值。
问题:
$scope.list = [];
$scope.listTree = {};
$scope.dataTree = [];
//获取listTree的数据
$scope.getList = function () {
serviceStruct.getAll({},path).then(function (res) {
$scope.listTree = res.data || res.data.result;
getGroup($scope.listTree);
}).then(function(){
$scope.load = true;
});
}
省略若干
……………………………………………………
list,dataTree数组的数据都是从listTree数据中push;现改变list数据,listTree,dataTree的数据也会被更改,
解决此问题就考虑到slice拷贝,亲测不好使,咱没分析原因,另外一种解决方案如下图:
JSON.parse1,JSON.stringify灵活运用,简单实现了slice拷贝
以上是关于angular,,以及深度拷贝问题;JSON.parse,JSON.stringify灵活运用的主要内容,如果未能解决你的问题,请参考以下文章