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