0

我读了一些帖子,它适用于一个模型,但是当我尝试使用其他模型时,它不起作用。我有这个:

function getimages(search, callback) {

   imagenmodel.find({ title: new RegExp(search) }, function (err, imagent){

       if (err) throw err;

       console.log(imagent);

       callback(imagent);

   });

}

显示console.log图像对象是空的,即使 RegExp 字母与标题的某些字母一致。也许我以错误的方式使用它,但我不知道如何正确地做到这一点。对此没有解决方案...?

谢谢提前!

4

1 回答 1

1
imagenmodel.find({ title: new RegExp(reg) }, function (err, imagent){

应该是

imagenmodel.find({ title: new RegExp(search) }, function (err, imagent){

因为那是函数参数。

于 2013-03-17T20:27:07.397 回答