"cursor.toArray is not a function""collection.find() accepts at most two arguments""unhandled promise rejections are deprecated" 同时使用 .find()

"cursor.toArray is not a function""collection.find() accepts at most two arguments""unhandled promise rejections are deprecated" while using .find()

我是 node js 的新手,目前我正在通过 mongoose 6.0 练习 mongoDB。在这里,我在尝试搜索数据库时在 find 方法上遇到此错误:

There was an error
TypeError: cursor.toArray is not a function
    at model.Query.<anonymous> (C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\lib\query.js:2151:19)
    at model.Query._wrappedThunk [as _find] (C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\lib\helpers\query\wrapThunk.js:27:8)
    at C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\kareem\index.js:370:33
    at processTicksAndRejections (internal/process/task_queues.js:77:11)
(node:13720) UnhandledPromiseRejectionWarning: MongoInvalidArgumentError: Method "collection.find()" accepts at most two arguments
    at Collection.find (C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\node_modules\mongodb\lib\collection.js:238:19)
    at NativeCollection.<computed> [as find] (C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\lib\drivers\node-mongodb-native\collection.js:191:33)
    at NativeCollection.Collection.doQueue (C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\lib\collection.js:135:23)
    at C:\Users\Ishan\Desktop\Web Dev\Backend lul\FruitsProject\node_modules\mongoose\lib\collection.js:82:24
    at processTicksAndRejections (internal/process/task_queues.js:77:11)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:13720) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--u
terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:13720) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

尝试使用 collection.find() 方法从数据库读取时。

const mongoose = require('mongoose');

mongoose.connect("mongodb://localhost:27017/fruitsDB", {useNewUrlParser: true})

const fruitSchema = new mongoose.Schema ({
  name: String,
  rating: Number,
  review: String
});

const Fruit = mongoose.model("Fruit", fruitSchema); //creates collection

const fruit= new Fruit({
  name: "Apple",
  rating: 7,
  review: "good"
});

const kiwi= new Fruit({
  name: "kiwi",
  rating: 7,
  review: "good"
});

const banana= new Fruit({
  name: "banana",
  rating: 7,
  review: "good"
});

// Fruit.insertMany([kiwi,banana],function(err){
//   if (err){
//     console.log(err);
//   }
//   else{
//     console.log("Successfully inserted");
//   }
// })
//

Fruit.find(function(err, fruits){ //shows error right here
  if(err){
    console.log("There was an error");
    console.log(err);
  }else{
    console.log(fruits);
  }
}); 


我什至尝试降级 mongoose 版本,但它仍然显示相同的错误。 插入效果很好,因为我先练习了它,后来又添加了“查找”方法。

尝试安装 5.13.8 版本的 mongoose。我在 6.0.1

中遇到了同样的问题

如果您按照为 Model.find() 制定的步骤进行操作,当前版本的 mongoose 将引发提到的错误。不过 Model.findOne() 没有问题。

var apple = Fruit.find( { } , { prop1: 1, prop2: 1, _id: 1 } )
    .exec(function(err, fruitsArray){
        ....
    });

我昨天也遇到了同样的错误,安装5.13.8版本没有错误地修复了它。

只是 运行 npm uninstall mongoose <= 卸载当前的 mongoose 版本 6.

然后 运行 npm i mongoose@5.13.8 <= 这将安装可以解决您的问题的版本

很可能是因为你有 windows 这就是为什么它兑现,因为未定义的参数 find({}); 即使你没有在对象中指定任何内容它也必须存在

collection.find({}, (er, te)=>{});

在 mongoose 版本 6 中遇到同样的错误,但如果 运行 findOne(),工作正常

另一个可能的解决方案,如果你正在使用 MongoDB Atlas,而你像我一样笨:

我想知道为什么我的开发设置在几分钟前还运行良好,突然 return 出现 cursor.toArray 错误,就在我尝试演示为客户设置!

事实证明,我在 Atlas 中设置了一个网络访问规则,该规则限制数据库访问我正在进行开发工作的本地 IP 地址。当我搬到客户的办公室演示项目时,我也搬到了他们的网络和 IP 地址,而没有为该位置的我的 Atlas 帐户添加新的安全规则。我不确定为什么,但出于某种原因,MongoDB 对缺乏对数据库服务器的安全访问的响应是 return cursor.toArray 错误!我为我当前的IP添加了一个新的安全条目,问题就解决了。

事后看来,这似乎很愚蠢而且很明显,但由此产生的错误已经足够迟钝了,因此我认为它可能对分享很有价值!


故事的寓意 (TL;DR): 如果您收到 cursor.toArray 错误,请检查您的 MongoDB Atlas 网络访问规则,查看您当前的 IP 地址是否在允许列表中。

"mongoose": "^6.2.2" 也解决了问题