12

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

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

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

还有其他选择吗?

谢谢!

4

1 回答 1

29

试试这个:

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

于 2013-01-25T23:51:23.047 回答