如何将 mongoose 与express.js 项目集成?

发布于 2024-12-01 19:17:30 字数 178 浏览 1 评论 0原文

我正在学习 Node.js 作为 Web 开发的可能工具。我了解 express.js 的工作原理,但我不确定如何集成猫鼬模型,我尝试在 google 和此处搜索答案,但没有成功。模型应该去哪里?它们是否应该与其余配置和路由信息一起放入 app.js 中?或者它们应该放在一个单独的文件中并像普通模块一样导入?任何信息和资源将不胜感激。谢谢。

I'm working on learning node.js as a possible tool for web development. I understand how express.js works, but I'm not sure how to integrate mongoose models, I've tried searching google and here for an answer with no luck. Where should models go? Should they go in app.js, with the rest of the configuration and rorouting information? or should they go in a seperate file and imported like a normal module? Any information and resources would be appreciated. Thank you.

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

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

发布评论

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

评论(1

自在安然 2024-12-08 19:17:31

我建议将您的模型放在单独的文件中,即使只是为了代码组织目的。将它们创建为普通节点模块并导出模式。将架构导入到 app.js 中并在那里对其进行建模:

var ModelSchema = require('models/model');

var model = mongoose.model('Model', ModelSchema);

I would recommend putting your models in separate files even if just for code organisation purposes. Create them as normal node modules and export the schema. Import the schema into your app.js and model them there:

var ModelSchema = require('models/model');

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