有没有一种方便的方法来过滤,只使用定义的bigObject
属性作为输出?filterInterface
filteredObject
大对象有很多属性,我想将信息剥离到我需要的属性(将其保存在某处,不想/不能保存完整的对象)。
// My big object
var bigObject = {
prop1: {
prop2: {
prop3: 123,
prop4: 456,
prop5: "TEST"
},
prop6: 789,
prop7: "xxx"
},
prop8: 5.6,
prop9: 3
};
// My "interface" to filter the object
var filterInterface = {
prop1: {
prop2: {
prop3: true,
},
prop7: true
}
};
// My expected result, only the properties of
// big Object which match the interface
var filteredObject = {
prop1: {
prop2: {
prop3: 123,
},
prop7: "xxx"
}
};