使用mongodb数据库时报错[nodemon] app crashed - waiting for file changes before starting...

  AccountModel.find()
    .sort({ time: -1 })
    .exec((err, data)
     => {
      if (err) {
        res.status(500).send("读取失败~~~");
        return;
      }
      console.log(data);
      // 响应成功
      res.render("list", { accounts: accounts });
    });

在使用该代码片段读取数据库信息时候,报错
使用mongodb数据库时报错[nodemon] app crashed - waiting for file changes before starting..._第1张图片
原因是当前mongodb数据库不再支持回调函数的写法,可以改为promise写法

  AccountModel.find()
    .sort({ time: -1 })
    .then((accounts) => {
      console.log(accounts);
      res.render("list", { accounts: accounts });
    })
    .catch((err) => {
      res.status(500).send("读取失败~~~");
    });

使用mongodb数据库时报错[nodemon] app crashed - waiting for file changes before starting..._第2张图片
然后就可以正常运行了

你可能感兴趣的:(数据库,mongodb)