1 2 3 4 5
| let objNew = {} for (let i of formData.entries()) { objNew[i[0]] = i[1] } console.log(objNew)
|
拷贝问题
注意 JavaScript 中对象和数组的引用特性
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| const A = { B: [], C: 99 };
let obj = A;
let obj = { ...A };
let obj = JSON.parse(JSON.stringify(A));
export const deepClone = (obj) => { if (obj === null || typeof obj !== 'object') return obj
if (Array.isArray(obj)) { return obj.map((item) => deepClone(item)) }
const clone = {} for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { clone[key] = deepClone(obj[key]) } } return clone }
|