Mongoose .find() 方法导致请求挂起

Posted

技术标签:

【中文标题】Mongoose .find() 方法导致请求挂起【英文标题】:Mongoose .find() method causes requests to hang 【发布时间】:2015-02-04 12:59:48 【问题描述】:

我已经定义了这条路线,但是对它的任何请求都会停留在“待处理”状态并永远运行。

当我记录代码时,我看到 1 后跟 4,这意味着 find 方法中的代码永远不会被执行

  # Calendar routes
  router.get '/calendars', (req, res) ->
    console.log '1'
    Calendar.find (err, calendars) ->
      console.log "2" + err
      console.log "3" + calendars
      res.send(err) if err
      res.json(calendars)
      return
    console.log '4'
    return

型号

mongoose = require("mongoose")

module.exports = mongoose.model("Calendar",
  name: String
)

关于为什么会这样的任何想法?

【问题讨论】:

当未调用 Mongoose 回调时,通常是因为该模型的连接未打开。您的mongoose.connect 通话成功了吗? 我如何检查这个? 为您的mongoose.connect 调用提供回调函数参数。 我不会在任何地方明确调用 mongoose.connect 【参考方案1】:

在您致电 mongoose.connect 之前,您的 mongoose 查询只会排队。

在你的启动代码中添加这样的代码来连接:

mongoose.connect('mongodb://localhost/test', function(err) 
    if (err) 
        console.err(err);
     else 
        console.log('Connected');
        
);

在连接字符串中,将test 替换为您的数据库名称。

【讨论】:

以上是关于Mongoose .find() 方法导致请求挂起的主要内容,如果未能解决你的问题,请参考以下文章

mongoose - 如何使用带有请求参数数组的 $in 进行 .find()现在它只返回空数组

如何在一个获取请求中返回多个 Mongoose 集合?

选项 Preflight 导致 POST 请求挂起

mongoose .find() 方法返回具有不需要的属性的对象

如何从 find 方法返回 Mongoose 结果?

使用 Mongoose 的 find() 时遇到问题,正确的使用方法是啥?