Node.js 和 Mongoose,太慢而无法将 Schema 定义放在单独的文件中?
在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在每个控制器/模型文件中连接到 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.