gpt4 book ai didi

.net - Azure Functions .NET 6 - 从响应 JSON 中删除空字段

转载 作者:行者123 更新时间:2023-12-03 03:37:04 33 4
gpt4 key购买 nike

我正在使用 .NET 6 在 Azure Functions v4 中寻找一种方法,以从响应 JSON 中删除空字段。 this answer 中没有描述任何选项为我工作。

我希望省略这些字段,目前仅使用 return new OkObjectResult(result); (结果是对象列表)

enter image description here

最佳答案

您可以实现如下所示的所需结果(替换您当前的return):

return new JsonResult(myObject, new JsonSerializerOptions() 
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull
});

关于.net - Azure Functions .NET 6 - 从响应 JSON 中删除空字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72930543/

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