<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
淺拷貝是建立一個新物件,這個物件有著原始物件屬性值的拷貝。如果屬性是基本型別,拷貝的就是基本型別的值,如果屬性是參照型別,拷貝的是記憶體地址 。如果不進行深拷貝,其中一個物件改變了物件的值,就會影響到另一個物件的值。
深拷貝是將一個物件從記憶體中完整的拷貝一份出來,從堆記憶體中開闢一個新的區域存放新物件,且修改新物件不會影響原物件。
一般情況下對普通物件需要進行深拷貝,可以使用這種方法進行深拷貝操作,這種是最簡單且程式碼量最少的深拷貝方法。
let a = {a:1,b:2} let b = JSON.parse(JSON.stringify(a)) a.a = 11 console.log(a)//{a:1,b:2} console.log(b)//{a:11,b:2}
1.1 JSON.parse(JSON.stringify(obj))深淺拷貝的缺陷
let a = { name: 'Jack', age: 18, hobbit: ['sing', {type: 'sports', value: 'run'}], score: { math: 'A', }, run: function() {}, walk: undefined, fly: NaN, cy: null, date: new Date() } let b = JSON.parse(JSON.stringify(a)) console.log(b) // { // age: 18, // cy: null, // date: "2022-05-15T08:04:06.808Z" // fly: null, // hobbit: (3) ["dance", "sing", {…}], // name: "Jack", // score: {math: "A"}, // }
取不到值為 undefined 的 key;如果物件裡有函數,函數無法被拷貝下來;無法拷貝copyObj物件原型鏈上的屬性和方法;物件轉變為 date 字串。
function deepClone(source) { if (typeof source !== 'object' || source == null) { return source; } const target = Array.isArray(source) ? [] : {}; for (const key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (typeof source[key] === 'object' && source[key] !== null) { target[key] = deepClone(source[key]); } else { target[key] = source[key]; } } } return target; }
2.1解決迴圈參照和symblo型別
function cloneDeep(source, hash = new WeakMap()) { if (typeof source !== 'object' || source === null) { return source; } if (hash.has(source)) { return hash.get(source); } const target = Array.isArray(source) ? [] : {}; Reflect.ownKeys(source).forEach(key => { const val = source[key]; if (typeof val === 'object' && val != null) { target[key] = cloneDeep(val, hash); } else { target[key] = val; } }) return target; }
const deepClone = (source, cache) => { if(!cache){ cache = new Map() } if(source instanceof Object) { // 不考慮跨 iframe if(cache.get(source)) { return cache.get(source) } let result if(source instanceof Function) { if(source.prototype) { // 有 prototype 就是普通函數 result = function(){ return source.apply(this, arguments) } } else { result = (...args) => { return source.call(undefined, ...args) } } } else if(source instanceof Array) { result = [] } else if(source instanceof Date) { result = new Date(source - 0) } else if(source instanceof RegExp) { result = new RegExp(source.source, source.flags) } else { result = {} } cache.set(source, result) for(let key in source) { if(source.hasOwnProperty(key)){ result[key] = deepClone(source[key], cache) } } return result } else { return source } }
可以使用$.extend進行深拷貝 $.extend(deepCopy, target, object1, [objectN])//第一個引數為true,就是深拷貝 let a = { a: 1, b: { d:8}, c: [1, 2, 3] }; let b = $.extend(true, {}, a); console.log(a.b.d === b.b.d); // false
4.1 jQuery.extend 原始碼
jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if (typeof target === "boolean") { deep = target; // Skip the boolean and the target target = arguments[i] || {}; i++; } // Handle case when target is a string or something (possible in deep copy) if (typeof target !== "object" && !jQuery.isFunction(target)) { target = {}; }
到此這篇關於JavaScript深拷貝的文章就介紹到這了,更多相關js深拷貝內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45