Node.js MVC 如何工作?

发布于 2024-10-20 11:28:48 字数 1436 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

丑疤怪 2024-10-27 11:28:48

查看 Express 了解 Node 框架开发。你可以在那里看到一些 MVC。 Node 中可用的 HTTP url 解析确实使编写路由器变得容易,以便将请求传递给“控制器”,并且模型中的需求也很容易。

Node 可以使用各种数据库,从 SQL(Postgres 等)到 No-SQL(CouchDB、Mongo 等)

这里是一个已经可用的“restart-node-on-changes”插件的示例

这里是 Node 的插件/模块列表

Check out Express for a take on Node framework development. You can see some MVC there. The HTTP url parsing available in Node really makes writing a router easy for tossing requests to 'controllers' and requiring in models is easy.

Node can use a variety of databases from SQL (Postgres, etc) to No-SQL (CouchDB, Mongo, etc)

Here is an example of an already available "restart-node-on-changes" add-on

Here is a list of plugins/modules for Node

我是有多爱你 2024-10-27 11:28:48

典型的 Node.js MVC 应用程序会将模型数据存储在内存和某种保存的数据库(如 mongoose)中。

每次模型更改时,它都会通过您的 js 并保存到数据库中。它根本不需要重新启动。

如果您更改代码,您确实必须重新启动服务器。我认为有各种程序可以阻止这种情况的发生。

虽然它是 不推荐

这些也相关:EventedIO

A typical node.js MVC application would store the model data in memory and on some kind of saved database like mongoose.

Every time a model changes it goes through your js and saves to the database. It shouldn't need restarting at all.

If you change your code you do indeed have to restart the server. I presume there are various programs out there to stop this from happening.

Although it's not Recommended

These are also Relevant: EventedIO

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