1

我有这段代码:

var regex={"$regex":req.query.query,"$options":req.query.options }  

db.collection('coders', function(err, collection) {
    collection.find(

    {"name":regex}

    ).toArray(function(err, items) {
    res.send(items);
    });

});

它按预期工作得很好。现在我希望能够使用任意字段而不是“名称”,所以我测试了这个:

    var regex={"$regex":req.query.query,"$options":req.query.options }

    var field="\"notName\""

db.collection('coders', function(err, collection) {
    collection.find(

    {field:regex}

    ).toArray(function(err, items) {
    res.send(items);
    });

});

这是行不通的。问题是什么?用变量调用 collection.find() 的正确方法是什么?

4

2 回答 2

2

您必须find使用方括号表示法在调用之外构建参数对象:

var toFind = {};
toFind[field] = regex;

db.collection('coders', function(err, collection) {
    collection.find(toFind).toArray(function(err, items) {
        res.send(items);
    });
});
于 2013-03-01T10:01:28.497 回答
1

试试这个变种

var regex={"$regex":req.query.query,"$options":req.query.options }
var field="notName";
db.collection('coders', function(err, collection) {
        var findExpression = {};
        findExpression[field]=regex;
        collection.find(findExpression).toArray(function(err, items) {
        res.send(items);
        });
});
于 2013-03-01T10:02:55.170 回答