ActionResult 是一个抽象(abstract)类,ViewResult 只是ActionResult 的一个实现(implementation)。如果你确认你返回的是一个视图(view),你可以直接返回类型为ViewResult。 ActionResult 有很多的派生类,如果你很确定你要返回的类型,你可以明确的返回该类型 如果你并不是很清楚,或者你根本不想去理解这些东西,你可以直接返...
In ASP.NET MVC, both ViewResult and ActionResult are classes used to represent the result of an action method. 1. ActionResult ActionResult is an abstract base class for all action result types in ASP.NET MVC. It is the base class for various result types such as ViewResult, RedirectResult...
6、返回FileResult要写入响应中的二进制输出,一般可以用作要简单下载的功能 7、 返回Null或者Void数据类型的EmptyResult 8、重定向方法:Redirect / RedirectToAction / RedirectToRoute 类型返回,是MVC开发中最重要的问题。 下面列举Asp.net MVC中Controller中的ActionResult返回类型 1、返回ViewResult视图结果,将视图呈现...
MVC ActionResult 视图模型 ViewResult,ContentResult,RedirectResult,RedirectToRouteResult,FileContentResult,JsonResult,HttpStatusCodeResult,PartialViewResult [HttpGet]publicActionResult Login() {returnView();//返回一个视图页面} 1. 2. 3. 4. 5. 6. [HttpGet]publicActionResult Login1() {returnContent("h...
When to use JSONResult in MVC? 号 相关讨论 你应该看到这个问题:man:)stackoverflow.com/questions/383692/… ActionResult是操作可以返回的抽象类。 Controller中的辅助方法(如Json()、Content()、View()…)返回继承ActionResult的不同具体类,包括JsonResult。
Mvc4_ActionResult应用 ()方法默认的返回类型都是ActionResult,通过查看UML图,ActionResult实际上是一个抽象类,因此实际返回的类型是该抽象类的子类。 ØActionResult及其子类的...一个可以下载的、流式的文件 通过我们在代码中编写,不难看到如下的一段代码: publicActionResultIndex() {returnView(); } 可能有人会...
NET MVC [CORE MVC] How to get parent controller name in a partial view? [Critical Question] Can mvc's controller method be concurrently executed in one page?? [DataType(DataType.EmailAddress)] Vs. [EmailAddress] [HttpPost] vs [AcceptVerbs(HttpVerbs.Post)] [not required] for valida...
<IActionResult> ForEveryone() return View(); { } public asyncTask<IActionResult> F 浏览1提问于2020-01-07得票数0 1回答 从外部登录回调后的服务器端处理 、、、 publicIActionResultOnPost ( string provider, string returnUrl = null ) // Request a redirectsignInManager.ConfigureExternalAuthentication...
MvcViewOptions NoContentResult NonActionAttribute NonControllerAttribute NonViewComponentAttribute NotFoundObjectResult NotFoundResult ObjectResult OkObjectResult OkResult PageRemoteAttribute PartialViewResult PhysicalFileResult ProblemDetails ProducesAttribute Pro...
ViewResult VirtualFileResult Microsoft.AspNetCore.Mvc.Abstractions Microsoft.AspNetCore.Mvc.ActionConstraints Microsoft.AspNetCore.Mvc.ApiExplorer Microsoft.AspNetCore.Mvc.ApplicationModels Microsoft.AspNetCore.Mvc.ApplicationParts Microsoft.AspNetCore.Mvc.Author...