gpt4 book ai didi

asp.net-web-api - 仅对特定操作使用驼峰式序列化

转载 作者:行者123 更新时间:2023-12-04 01:30:41 24 4
gpt4 key购买 nike

我已经使用了一段时间的 WebAPI,并且通常将其设置为使用驼峰式 json 序列化,这现在相当普遍并且到处都有很好的文档记录。

然而,最近在一个更大的项目上工作,我遇到了一个更具体的要求:我们需要使用驼峰式 json 序列化,但是由于我们的客户端脚本的向后兼容性问题,我只希望它发生在特定的操作中,以避免破坏(非常大的)网站的其他部分。

我认为一种选择是拥有自定义内容类型,但这需要客户端代码来指定它。

还有其他选择吗?

谢谢!

最佳答案

试试这个:

public class CamelCasingFilterAttribute : ActionFilterAttribute
{
private JsonMediaTypeFormatter _camelCasingFormatter = new JsonMediaTypeFormatter();

public CamelCasingFilterAttribute()
{
_camelCasingFormatter.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
}

public override void OnActionExecuted(HttpActionExecutedContext actionExecutedContext)
{
ObjectContent content = actionExecutedContext.Response.Content as ObjectContent;
if (content != null)
{
if (content.Formatter is JsonMediaTypeFormatter)
{
actionExecutedContext.Response.Content = new ObjectContent(content.ObjectType, content.Value, _camelCasingFormatter);
}
}
}
}

将此 [CamelCasingFilter] 属性应用到您想要驼峰式大小写的任何操作。它将接收您将要发回的任何 JSON 响应,并将其转换为使用驼峰式大小写作为属性名称。

关于asp.net-web-api - 仅对特定操作使用驼峰式序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14528779/

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