我读了一些帖子,它适用于一个模型,但是当我尝试使用其他模型时,它不起作用。我有这个:
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 字母与标题的某些字母一致。也许我以错误的方式使用它,但我不知道如何正确地做到这一点。对此没有解决方案...?
谢谢提前!