ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
``` /** * 拷贝对象 * */ clone (obj) { const that =this; let result = Array.isArray(obj) ? [] : {}; for (let key in obj) { if (obj.hasOwnProperty(key)) { if (typeof obj[key] === 'object') { result[key] = that.clone(obj[key]); //递归复制 } else { result[key] = obj[key]; } } } return result; }, ```