MVC中的执行流程
我正在尝试详细学习 MVC,我想知道内部的确切功能流程是什么,即调用哪些函数(重要函数)以及它们做什么应用程序何时启动以及除了我们在继续进行时在应用程序中编写的控制器操作之外还调用了哪些函数。
I am trying to learn MVC in detail, and I am wondering what's the exact functional flow internally, in the sense of which functions (important functions) are called and what they do when the application starts and what functions are called apart from the controller actions that we write in our application as we proceed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是详细步骤:
我还想向您推荐 MVC 蛇形图,我在 ASP.NET MVC 的许多演示中使用它。这是完整图片:
我链接到的博客文章描述了 ASP.NET MVC 中使用的一些有关数据如何流经应用程序的概念。
Here are the detailed steps:
I would also like to refer you to the MVC Snake Diagram that I use in many presentations on ASP.NET MVC. Here's the full image:
The blog post I linked to describes some of the concepts used in ASP.NET MVC regarding how data flows through the application.
查看 Redgates 的免费“ASP.NET MVC 请求处理管道" 执行流程海报
和 Steven Sanderson 的 MCV 书 了解详细信息。
Check out Redgates's free "The ASP.NET MVC Request Handling Pipeline" poster for execution flow
and Steven Sanderson's MCV book for details.