Node.js 和 Mongoose,太慢而无法将 Schema 定义放在单独的文件中?

发布于 2024-11-24 01:27:31 字数 472 浏览 0 评论 0原文

在使用 Node.js 时,我真的很想让我的文件结构井井有条。通常在另一种语言的项目中,我会有这样的结构:

  • 节点应用程序目录
    • App.js
    • 控制器
      • UserController.js
      • OtherController.js
    • 型号
      • UserModel.js
      • OtherModel.js

我看到的(潜在)问题是这样的:我使用 Mongoose 和 MongoDB 作为我的数据库,为了定义一个“模型”,我需要一个 Mongoose 模式,为了做到这一点,我有在每个控制器和模型文件中使用 Mongoose 连接到数据库。

我对这些技术知之甚少,这可能会快如闪电,永远不会成为问题,我也不会有任何线索。或者这是我应该避免的事情,只是将所有内容都放入一个(非常大的)文件中?

Playing around with Node.js and I really want to keep my file structure organized. Normally in a project in another language I would have a structure like this:

  • Node App Directory
    • App.js
    • Controllers
      • UserController.js
      • OtherController.js
    • Models
      • UserModel.js
      • OtherModel.js

The (potential) problem I see is this: I use Mongoose and MongoDB for my database, in order to define a "Model" I need a Mongoose Schema, in order to do that I have to connect to the database with Mongoose in each of the Controllers and Model files.

I know so little about these technologies, this could be lightning quick and never be an issue and I wouldn't have a clue. Or is this something I should avoid and just shove everything in one (very large) file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2024-12-01 01:27:31

您不需要在每个控制器/模型文件中连接到 mongo。只需在 App.js 中执行一次即可完成。

You don't need to connect to mongo in every controller/model file. Just do it once in App.js and you're done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文