Actionresult vs JSONresult

后端 未结 5 1209
没有蜡笔的小新
没有蜡笔的小新 2020-12-14 07:07

I have 2 questions:

  1. What is the difference between JSONResult and ActionResult?

  2. When to use JSONResult in MVC?

5条回答
  •  伪装坚强ぢ
    2020-12-14 07:25

    JsonResult

    This one is a bit more complex, but still not very. It also has hardcoded its ContentType, but what makes it a bit more complex is that it uses a hardcoded JavaScriptSerializer to serialize the JSON data before writing it directly to the response.

    this post can be helpful
    http://brendan.enrick.com/post/types-of-aspnet-mvc-3-action-results.aspx

提交回复
热议问题