我正在尝试通过JavaScript中的键删除对象
这是数组的例子
{
Account Manager: {selected: true}
Arrival: {selected: true}
Client: {selected: true}
Client Contact: {selected: true}
Created: {selected: true}
Created by: {selected: true}
Departure: {selected: true}
Destination: {selected: true}
Keywords: {selected: true}
Status: {selected: true}
}
现在我正在尝试从此阵列中删除状态和客户端,但是我不知道该如何做。 我已经尝试过了:
for(var i=0; i<list.length; i++) {
if(list[i] == 'Status' || list[i] == 'Client') {
list.splice(i, 1);
}
}
答案 0 :(得分:2)
提供的示例是Object
,而不是array
。由于您使用的是AngularJS
,因此可以直接使用JavaScript
从对象中删除密钥。
下面是仅使用delete()
方法的示例
const _object = {
"Account Manager": { selected: true },
"Arrival": { selected: true },
"Client": { selected: true },
"Client Contact": { selected: true },
"Created": { selected: true },
"Created by": { selected: true },
"Departure": { selected: true },
"Destination": { selected: true },
"Keywords": { selected: true },
"Status": { selected: true }
}
delete _object["Status"];
console.log(_object);
答案 1 :(得分:0)
我们可以使用reduce函数-
let newList = Object.keys(oldList).reduce((acc, key) => {
if(key !== 'Status' || key !== 'Client'){
acc[key] = oldList[key]
}
return acc;
}, {})
答案 2 :(得分:0)
我们可以使用delete
密钥--
delete object["keyName"];
这将删除该特定键...