使用 Object.entries() 方法将对象转换成一个键值对的数组,然后使用 reduce() 方法遍历这个数组并过滤掉不需要的属性。最后,使用一个空对象作为累加器(acc),将过滤后的属性存储到这个对象中。

1
2
3
4
5
6
7
8
9
const fields = {
name: "xxx",
age: 18,
other: null
}
const filteredFields = Object.entries(fields).reduce((acc, [key, value]) => {
if (key && value) { acc[key] = value; } return acc;
}, {});
console.log(filteredFields)