我想根据下面给出的过滤条件来过滤一个表Demandtable。我在结果Variable中得到了答案,该变量不为null,但是我无法从结果中获取行。
var filtercondition = {"location": "Delhi", "product": "ScrewMachine"};
var result = Demandtable.filter(search, filtercondition);
function search(Demandtable){
return Object.keys(this).every((key) => Demandtable[key] === this[key]);
}
上面的代码有效,但是我不知道如何从结果对象中获取值。我怎样才能得到它们?