我如何判断 RenderAction 是否正在调用我的操作?

发布于 2024-12-04 18:21:48 字数 403 浏览 0 评论 0原文

我有一个可能通过普通链接调用的操作,在这种情况下我会返回一个 View(),或者它也可以通过 AJAX 或 RenderAction (即作为子操作)调用,在这种情况下我会返回一个 PartialView()。

整理 AJAX 部分很容易 - 但如何测试我的操作是否被呈现为子操作?

理想情况下,我希望能够编写这样的代码:

if (Request.IsAjaxRequest() || Request.IsChildAction())
    return PartialView();

return View();

显然 Request.IsChildAction() 不存在 - 是否有类似的东西,或者我只需要创建一个始终返回 PartialView 的特殊 ChildAction ?

I have an action that could potentially be called via a normal link, in which case I'd return a View(), or it could also be called via AJAX or RenderAction (ie as a Child Action) in which case I'd return a PartialView().

Sorting out the AJAX part is easy - but how can I test if my action is being rendered as a Child Action?

Ideally, I'd like to be able to write code like this:

if (Request.IsAjaxRequest() || Request.IsChildAction())
    return PartialView();

return View();

Obviously the Request.IsChildAction() does not exist - is there something simlilar, or do I just need to create a special ChildAction that always returns a PartialView?

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

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

发布评论

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

评论(1

我不咬妳我踢妳 2024-12-11 18:21:48

你就快到了:

public ActionResult Foo()
{
    if (Request.IsAjaxRequest() || ControllerContext.IsChildAction)
    {
        return PartialView();
    }
    return View();
}

You were almost there:

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