ASP.NET MVC 有哪些可用的 ActionResults?
目前,在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从此处找到
控制器对象上的方法是这里
有:
Found from here
Methods on the controller object are here
There is:
来自 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.