码迷,mamicode.com
首页 > Web开发 > 详细

angular,,以及深度拷贝问题;JSON.parse,JSON.stringify灵活运用

时间:2018-05-11 13:13:21      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:简单   data   string   angular   bubuko   问题   tree   实现   获取   

问题:

$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灵活运用

标签:简单   data   string   angular   bubuko   问题   tree   实现   获取   

原文地址:https://www.cnblogs.com/janice-jia/p/9023378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!