ASP.NET MVC 有哪些可用的 ActionResults?

发布于 2024-07-24 08:40:57 字数 99 浏览 6 评论 0原文

目前,在 ASP.NET MVC 中返回 ActionResult 的方法有哪些(即 RedirectToAction 等),

我还没有找到列出此类内容的良好文档资源。

What are all the methods that return an ActionResult in ASP.NET MVC as of right now (ie. RedirectToAction, etc.)

I haven't found a good documentation resource that lists this kind of stuff.

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

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

发布评论

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

评论(2

提赋 2024-07-31 08:40:57

此处找到

System.Web.Mvc.ActionResult
    System.Web.Mvc.ContentResult
    System.Web.Mvc.EmptyResult
    System.Web.Mvc.FileResult
    System.Web.Mvc.HttpUnauthorizedResult
    System.Web.Mvc.JavaScriptResult
    System.Web.Mvc.JsonResult
    System.Web.Mvc.RedirectResult
    System.Web.Mvc.RedirectToRouteResult
    System.Web.Mvc.ViewResultBase

控制器对象上的方法是这里

有:

Content
File
Javascript
Json
PartialView
Redirect
RedirectToAction
RedirectToRoute
View

Found from here

System.Web.Mvc.ActionResult
    System.Web.Mvc.ContentResult
    System.Web.Mvc.EmptyResult
    System.Web.Mvc.FileResult
    System.Web.Mvc.HttpUnauthorizedResult
    System.Web.Mvc.JavaScriptResult
    System.Web.Mvc.JsonResult
    System.Web.Mvc.RedirectResult
    System.Web.Mvc.RedirectToRouteResult
    System.Web.Mvc.ViewResultBase

Methods on the controller object are here

There is:

Content
File
Javascript
Json
PartialView
Redirect
RedirectToAction
RedirectToRoute
View
迷雾森÷林ヴ 2024-07-31 08:40:57

来自 MVC2 中的 ActionResult 类型

  • ContentResult – 表示文本结果。

  • EmptyResult – 表示没有
    结果。

  • FileContentResult – 表示一个可下载的文件(带有
    二进制内容)。

  • FilePathResult – 表示可下载文件
    (有路径)。

  • FileStreamResult – 表示可下载文件
    (带有文件流)。

  • JavaScriptResult – 代表 JavaScript
    脚本。

  • JsonResult – 表示 JavaScript 对象表示法结果
    可以在 AJAX 应用程序中使用。

  • PartialViewResult –
    表示由分部视图呈现的 HTML 和标记。

  • 重定向结果
    – 表示重定向到新的 URL。

  • 重定向到路由结果 –
    表示使用以下命令执行重定向的结果
    指定路由值字典。

  • ViewResult – 表示 HTML 和
    由视图呈现的标记。

From ActionResult types in MVC2:

  • ContentResult – Represents a text result.

  • EmptyResult – Represents no
    result.

  • FileContentResult – Represents a downloadable file (with the
    binary content).

  • FilePathResult – Represents a downloadable file
    (with a path).

  • FileStreamResult – Represents a downloadable file
    (with a file stream).

  • JavaScriptResult – Represents a JavaScript
    script.

  • JsonResult – Represents a JavaScript Object Notation result
    that can be used in an AJAX application.

  • PartialViewResult –
    Represents HTML and markup rendered by a partial view.

  • RedirectResult
    – Represents a redirection to a new URL.

  • RedirectToRouteResult –
    Represents a result that performs a redirection by using the
    specified route values dictionary.

  • ViewResult – Represents HTML and
    markup rendered by a view.

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