我正在尝试将过滤器应用于mongo查找查询。我们的想法是,如果过滤器具有值,则mongo选择器将限制返回的内容,但如果未指定过滤器(过滤器具有空值或默认值),则不应限制查询。我知道如果指定了过滤器,如何使过滤器工作,但我不确定如果没有指定过滤器,如何确保它返回未过滤。如果过滤器未指定或者是默认值,我如何获取查询以返回集合中的所有文档?
仅供参考:我在Meteor项目中使用它,并将过滤器设置为Session变量,以使动态返回。
示例集合:
/* example documents in SampleCollection
{ name: "sample1", fieldA: "foo", fieldB: "foo" }
{ name: "sample2", fieldA: "foo", fieldB: "bar" }
{ name: "sample3", fieldA: "bar", fieldB: "foo" }
{ name: "sample4", fieldA: "bar", fieldB: "bar" }
*/
示例JS代码:
var filters = {
fieldA: null,
fieldB: null
};
var getFieldASelector = function () {
if (filters.fieldA) {
return { $eq: fieldA };
} else {
/* fieldA has a falsey value which is the default
and therefore should not limit the find query */
// not sure what to return here
return {};
};
};
var getFieldBSelector = function () {
if (filters.fieldB) {
return { $eq: fieldB };
} else {
/* fieldB has a falsey value which is the default
and therefore should not limit the find query */
// not sure what to return here
return {};
};
};
var results = SampleCollection.find({
fieldA: getFieldASelector(),
fieldB: getFieldBSelector()
});
在此示例中,results
应返回所有四个文档。如果filter = { fieldA: "foo", fieldB: null };
则results
应返回文档sample1和sample2。
答案 0 :(得分:1)
假设每个文档都有两个键,您只需return {$ne:null}
。如果你想在密钥存在的情况下工作,但是它的值为null,你也可以return {$exists:true}
答案 1 :(得分:0)
我建议你创建一个selector
对象并根据给定的过滤器填充它。虽然我不确定这是否是你所要求的。
function getResults(filter){
var selector = {};
// what this does is filters aways keys with non-truthy values
Object.keys(filter).reduce(function (prev, curr){
var val = filter[curr];
if (!!val)
prev[curr] = filter[curr];
return prev;
}, selector);
return SampleCollection.find(selector);
}
当您真正想要使用非真实值(例如0
或空字符串)过滤字段时,会出现意外行为。