es6 删除对象的某一个属性,如下代码
let old_form = {
id: 15,
aopnoIdList:[1,2],
callLevel: 1,
phoneFlag: 0
}
let {
aopnoIdList,
...new_form
} = old_form;
//输出new_form的值
//{
// id: 15,
// callLevel: 1,
// phoneFlag: 0
// }
--by Affandi ⊙▽⊙
网友评论