js 中 const {xx1, xx2} = obj;的写法 点赞侠01 2023-07-03 56 阅读1分钟 js 中 const {xx1, xx2} = obj;的写法: 这种就等价于 let xx1 = obj.xx1; let xx2 = obj.xx2;