What is the difference between JSONResult and ActionResult?@H_403_6@ When to use JSONResult in MVC?@H_403_6@
What is the difference between JSONResult and ActionResult?@H_403_6@
When to use JSONResult in MVC?@H_403_6@
Controller中的帮助方法(例如Json(),Content(),View(),…)返回不同的继承ActionResult的具体类,包括JsonResult。@H_403_6@
您应该将您的操作方法声明为返回ActionResult,以便他们可以自由返回任何具体的结果类。@H_403_6@