合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` /** * 拷贝对象 * */ 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; }, ```