mongoDB 中的多个过滤器

Multiple filters in mongoDB

我的应用程序有一部分可以指定一些过滤器来检索某些数据。但并非所有过滤器都是必需的,因此我可以将其中一些留空,查询不会使用它们。我怎样才能在 mongoDB 中实现这一点。提前致谢。

客户端:

        $('#filter').click(function(e){
        e.preventDefault();
        var filters = JSON.stringify({ Marca : $('#Marca').val(), Modelo : $('#Modelo').val(), Fecha : $('#Fecha').val()});

            $.ajax({
            type: 'POST',
            data: filters,
            url: '/filterFees',
            contentType: 'application/json'
            }).done(function( response ) {
                if(response.msg === ''){
                    filterFees(response.data);
                }
                else {
                    alert('Error: ' + response.msg);
                }
            })
        })

node.js(使用和尚):

app.post('/filterFees', function(req, res){
  var db = req.db;
  var collection = db.get('Fees');

  collection.find({'Marca' : req.body.Marca, 'Modelo' : req.body.Modelo, 'Fecha' : req.body.Fecha, },{},function(err,docs){
        res.send((err === null) ? { msg: '', data : docs } : { msg:'error: ' + err });
    });
})

检查过滤器中是否存在该值

var filter = {}, filters;
if $('#Marca').val()
    filter.Marca = $('#Marca').val();

if $('#Modelo').val()
    filter.Modelo = $('#Modelo').val();

if $('#Fecha').val()
    filter.Fecha = $('#Fecha').val()

filters = JSON.stringify(filter);

并查找过滤器

中的数据
collection.find(req.body,{},function(err,docs){
    res.send((err === null) ? { msg: '', data : docs } : { msg:'error: ' + err });
});

PS。不确定为什么要对参数进行字符串化 而不是发送对象