仅针对特定操作使用camel case序列化

时间:2013-01-25 19:12:52

标签: asp.net-web-api

我已经使用了一段时间的WebAPI,并且通常将其设置为使用驼峰式json序列化,现在这种情况在所有地方都很常见并且有很好的记录。

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

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

还有其他选择吗?

谢谢!

1 个答案:

答案 0 :(得分:28)

试试这个:

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响应并将其转换为使用驼峰套管来代替属性名称。