强制CamelCase在ASP.NET WebAPI每个控制器

前端之家收集整理的这篇文章主要介绍了强制CamelCase在ASP.NET WebAPI每个控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在ASP.NET WebAPI中,我知道您可以设置默认的json格式化程序以使用global.aspx中使用 CamelCasePropertyNamesContractResolver()的骆驼案例,这将强制所有json序列化为骆驼案例。

但是,我需要将其设置为“Per Controller”实例,而不是Global解决方案。

这可能吗?

解决方法

感谢@KiranChalla我能够比我想象的要容易得多。

这是我创建的非常简单的类:

using System;
using System.Linq;
using System.Web.Http.Controllers;
using System.Net.Http.Formatting;
using Newtonsoft.Json.Serialization;

public class CamelCaseControllerConfigAttribute : Attribute,IControllerConfiguration 
{
  public void Initialize(HttpControllerSettings controllerSettings,HttpControllerDescriptor controllerDescriptor)
  {
    var formatter = controllerSettings.Formatters.OfType<JsonMediaTypeFormatter>().Single();
    controllerSettings.Formatters.Remove(formatter);

    formatter = new JsonMediaTypeFormatter
    {
      SerializerSettings = {ContractResolver = new CamelCasePropertyNamesContractResolver()}
    };

    controllerSettings.Formatters.Add(formatter);

  }
}

然后只需将属性添加到您想要的CamelCase的任何Controller类。

[CamelCaseControllerConfig]
原文链接:https://www.f2er.com/aspnet/253526.html

猜你在找的asp.Net相关文章