我有2个问题:
-
What is the difference between JSONResult and ActionResult?
-
When to use JSONResult in MVC?
ActionResult是一个动作可以返回的抽象类。
Controller中的帮助方法(例如Json(),Content(),View(),…)返回不同的继承ActionResult的具体类,包括JsonResult。
您应该将您的操作方法声明为返回ActionResult,以便他们可以自由返回任何具体的结果类。
原文链接:https://www.f2er.com/aspnet/253817.html