ASP.NET MVC ViewPage 执行

发布于 2024-10-16 02:52:11 字数 363 浏览 0 评论 0原文

我(粗略地)跟踪从控制器方法中调用 return View(); 后生成视图所采取的步骤。

到目前为止,我已经完成了以下步骤:

  1. 调用 View()
  2. 创建 ViewResult,并将来自控制器的 ViewData 传递给它。
  3. 调用 ViewResult.ExecuteResult()。
  4. 从这一点我知道 ViewData 然后再次传递到 ViewPage 对象的 ViewContext 属性。
  5. 奇迹发生了,ViewPage 被发送到输出流。

这里缺少很多步骤,有人知道跟踪执行流程的好资源吗?

干杯!

克里斯

I am (roughly) tracing the steps that are taken to generate a view once you call return View(); from within a controller method.

Thus far I have gotten these steps:

  1. Call View()
  2. A ViewResult is created with the ViewData from the Controller being passed to it.
  3. ViewResult.ExecuteResult() is called.
  4. From this point I know that the ViewData is then passed once again to the ViewContext property of the ViewPage object.
  5. Magic happens and the ViewPage is sent to the output stream.

There are a lot of steps missing here, does anybody know of a good resource that traces the execution flow?

Cheers!

Chris

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

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

发布评论

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

评论(1

内心荒芜 2024-10-23 02:52:11

您始终可以下载源代码并逐步执行代码以更好地了解内容正在进行中。

You could always download the source and step through the code to get a better look at what is going on.

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