未启用 API 端点的Mongoose_Error返回 ok 响应 [已关闭]

A Mongoose_Error that isnt enabling my api end points return an ok response [closed]

提问人:Anzoe John 提问时间:11/11/2023 更新时间:11/22/2023 访问量:21

问:


想改进这个问题吗?通过编辑这篇文章添加详细信息并澄清问题。

昨天关闭。

嗨,有人在测试端点时遇到过这个问题(MERN 堆栈家伙)吗?

MongooseError:操作缓冲在 10000 毫秒后超时 在超时。(C:\ Users \ Enzo John \ Desktop\ MERN-Auth \ node_modules \ mongoose \ lib \ drivers \ node-mongodb-native\collection.js:186:23) 在 listOnTimeout (node:internal/timers:569:17) 在 process.processTimers (node:internal/timers:512:7)goals.find()

邮递员有 200 个回复,但我得到了 500 个回复。问题

堆栈 默恩

评论


答:

-1赞 Akeel Ahmed Qureshi 11/22/2023 #1

试试这段代码:

const hotels = async (req, res) => {
 
    const AllHotels = await HotelSchema.find().maxTimeMS(20000);

    //write your code.........
    
  } catch (err) {
      //write your code..........
  }
}