Html.RenderAction 是否创建单独的请求?

发布于 2024-12-23 03:51:02 字数 105 浏览 1 评论 0 原文

当我有一个调用 RenderAction 的视图时,我在 Fiddler 中没有看到任何额外的请求。是不是因为它不是一个单独的 Web 请求,也就是说,这一切都是在控制器渲染其视图时在内部完成的?

I'm not seeing any extra requests in Fiddler when I have a view that makes RenderAction calls. Is it because it isn't a separate web request, per say, it's all done internally when the controller is rendering its view?

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

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

发布评论

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

评论(1

阿楠 2024-12-30 03:51:02

RenderAction 只是调用控制器上的给定操作。该操作的结果将写入正在请求的当前页面。它不会强迫客户端提出额外的请求。

有关详细信息,请参阅 Phil Haack 关于 Html.RenderAction 和 Html 的帖子。行动

RenderAction simply invokes the given action on a controller. The result of that action will be written to the current page that's being requested. It does not force the client to make additional requests.

For more info, see Phil Haack's post about Html.RenderAction and Html.Action.

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