确定号召性用语是否来自视图

发布于 2024-10-10 09:57:09 字数 165 浏览 2 评论 0原文

有没有办法确定对控制器操作的调用是否来自使用 Html.RenderAction 函数的视图。

这类似于Request.IsAjaxRequest。如果调用来自视图,我只想渲染部分视图,而不是带有母版页的完整视图。

BTW 渲染部分不是一个可行的解决方案,因为该操作会获取额外的数据

Is there a way to determine if a call to a controllers action is from a view using the Html.RenderAction function.

This is similar to Request.IsAjaxRequest. If the call comes from a view I would like to just render a partial view rather than the the full view with master page.

BTW Render partial is not a viable solution as the action fetches additional data

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

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

发布评论

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

评论(1

海的爱人是光 2024-10-17 09:57:09

使用 ControllerContext.IsChildAction 具有给定的效果。这样我可以使用子操作和 ajax 请求提供相同的 HTML(用于非 javascript 用户的回退)

        if (Request.IsAjaxRequest() || ControllerContext.IsChildAction)
            return PartialView("ViewName", results);

Using the ControllerContext.IsChildAction has the given effect. this way I can provide the same HTML using a child action and a ajax request (for fallback on non javascript users)

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