asp.net-mvc – Actionresult vs JSONresult

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Actionresult vs JSONresult前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有2个问题:
  1. What is the difference between JSONResult and ActionResult?

  2. When to use JSONResult in MVC?

解决方法

ActionResult是一个动作可以返回的抽象类。

Controller中的帮助方法(例如Json(),Content(),View(),…)返回不同的继承ActionResult的具体类,包括JsonResult。

您应该将您的操作方法声明为返回ActionResult,以便他们可以自由返回任何具体的结果类。

原文链接:https://www.f2er.com/aspnet/253817.html

猜你在找的asp.Net相关文章