引用数据类型的深拷贝

转自:https://www.cnblogs.com/embrace-ly/p/10693035.html

方法一:递归

let cloneObj = function(obj){
    let str, newobj = obj.constructor === Array ? [] : {};
    if(typeof obj !== 'object'){
        return;
    } else if(window.JSON){
        str = JSON.stringify(obj), //系列化对象
        newobj = JSON.parse(str); //还原
    } else {
        for(var i in obj){
            newobj[i] = typeof obj[i] === 'object' ?  cloneObj(obj[i]) : obj[i]; 
        }
    }
    return newobj;
};

let arr2 = cloneObj(arr1);

方法二:通过JSON解析解决

let arr2 = JSON.parse(JSON.stringify(arr1));

注意:这种方法拷贝后的数组会丢失原数组中定义的方法和数组原型中定义的方法。

posted @ 2020-05-20 18:04  justsilky  阅读(165)  评论(0编辑  收藏  举报