gpt4 book ai didi

json - ObjectResult 和 JsonResult 有什么区别

转载 作者:IT老高 更新时间:2023-10-28 12:52:57 27 4
gpt4 key购买 nike

Microsoft.AspNetCore.Mvc 命名空间中有两个类:

ObjectResultJsonResult

两者都将返回的对象转换为 JSON 格式。

它们有什么区别,使用它们的目的是什么?

最佳答案

JsonResult 是一个 IActionResult,它将给定对象格式化为 JSON

ObjectResult 是一个内置内容协商的 IActionResult

在其ExecuteResultAsync内部,负责写入响应流,框架将遍历可用的格式化程序并选择一个相关的。

选择格式化程序的逻辑与 ASP.NET Web API 中的类似,并且基于以下优先顺序:

  • 接受 header
  • 内容类型 header
  • 根据类型匹配选择

OkObjectResult 类

An Microsoft.AspNetCore.Mvc.ObjectResult that when executed performscontent negotiation, formats the entity body, and will produce aMicrosoft.AspNetCore.Http.StatusCodes.Status200OK response ifnegotiation and formatting succeed.

引用资料:

关于json - ObjectResult 和 JsonResult 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38788559/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com