// 方法一 let objClone = JSON.parse(JSON.stringify(obj));// 方法二 let objClone = [...obj]
将 obj 深拷贝给 objClone