当前位置:   article > 正文

WebApi返回Json格式_webapi返回json数据

webapi返回json数据

WebApi返回Json格式

 一、Global配置(此方法杀伤力太大,所有的返回的xml格式都会被毙掉)

  1. public class WebApiApplication : System.Web.HttpApplication{
  2. protected void Application_Start(){
  3. AreaRegistration.RegisterAllAreas();
  4. GlobalConfiguration.Configure(WebApiConfig.Register);
  5. FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
  6. RouteConfig.RegisterRoutes(RouteTable.Routes);
  7. BundleConfig.RegisterBundles(BundleTable.Bundles);
  8. GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear(); //<------- 毙掉XML使api返回为json
  9. }
  10. }

但有个不好的地方,如果返回的结果是String类型,如aaa,返回的json就会变成"aaa"

 二、WebApiConfig配置

  1. namespace TestWebApi{
  2. public static class WebApiConfig {
  3. public static void Register(HttpConfiguration config) {
  4. // Web API 配置和服务
  5. #region [=>1、WebApi 返回JSON,不推荐做法性能不高]
  6. /*
  7. config.Formatters.Clear();
  8. config.Formatters.Remove(config.Formatters.XmlFormatter);
  9. config.Formatters.Add(new JsonMediaTypeFormatter());
  10. config.Formatters.JsonFormatter.SerializerSettings = new JsonSerializerSettings{
  11. ContractResolver = new UnderlineSplitContractResolver(), //小写命名法。
  12. DateFormatString = "yyyy-MM-dd HH:mm:ss",//解决json时间带T的问题
  13. Formatting = Newtonsoft.Json.Formatting.Indented,//解决json格式化缩进问题
  14. ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore//解决json序列化时的循环引用问题
  15. };
  16. */
  17. #endregion
  18. #region [=>2、WebApi 返回JSON,推荐做法性能最高]
  19. config.Services.Replace(typeof(IContentNegotiator), new JsonContentNegotiator(new JsonMediaTypeFormatter()));
  20. #endregion
  21. // Web API 路由
  22. config.MapHttpAttributeRoutes();
  23. config.Routes.MapHttpRoute(
  24. name: "DefaultApi",
  25. routeTemplate: "api/{controller}/{action}/{id}",
  26. defaults: new { id = RouteParameter.Optional }
  27. );
  28. }
  29. }
  30. /// <summary>
  31. /// 在全局设置中,使用自定义的只返回Json Result。只让api接口中替换xml,返回json。这种方法的性能是最高的!
  32. /// </summary>
  33. public class JsonContentNegotiator : IContentNegotiator
  34. {
  35. private readonly JsonMediaTypeFormatter _jsonFormatter;
  36. public JsonContentNegotiator(JsonMediaTypeFormatter formatter)
  37. {
  38. _jsonFormatter = formatter;
  39. }
  40. public ContentNegotiationResult Negotiate(Type type, HttpRequestMessage request, IEnumerable<MediaTypeFormatter> formatters)
  41. {
  42. // 对 JSON 数据使用混合大小写。驼峰式,但是是javascript 首字母小写形式.小驼峰命名法。
  43. //config.Formatters.JsonFormatter.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
  44. // 对 JSON 数据使用混合大小写。跟属性名同样的大小.输出
  45. _jsonFormatter.SerializerSettings.ContractResolver = new UnderlineSplitContractResolver(); //小写命名法。
  46. _jsonFormatter.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";//解决json时间带T的问题
  47. _jsonFormatter.SerializerSettings.Formatting = Newtonsoft.Json.Formatting.Indented;//解决json格式化缩进问题
  48. _jsonFormatter.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;//解决json序列化时的循环引用问题
  49. var result = new ContentNegotiationResult(_jsonFormatter, new MediaTypeHeaderValue("application/json"));
  50. return result;
  51. }
  52. }
  53. /// <summary>
  54. /// Json.NET 利用ContractResolver解决命名不一致问题
  55. /// 解决问题:通过无论是序列化还是反序列化都达到了效果,即:ProjectName -> project_name 和 project_name -> ProjectName
  56. /// </summary>
  57. public class UnderlineSplitContractResolver : DefaultContractResolver {
  58. protected override string ResolvePropertyName(string propertyName) {
  59. return CamelCaseToUnderlineSplit(propertyName);//下划线分割命名法
  60. //return propertyName.ToLower();//小写命名法
  61. }
  62. private string CamelCaseToUnderlineSplit(string name) {
  63. StringBuilder builder = new StringBuilder();
  64. for (int i = 0; i < name.Length; i++) {
  65. var ch = name[i];
  66. if (char.IsUpper(ch) && i > 0) {
  67. var prev = name[i - 1];
  68. if (prev != '_'){
  69. if (char.IsUpper(prev)){
  70. if (i < name.Length - 1){
  71. var next = name[i + 1];
  72. if (char.IsLower(next)) {
  73. builder.Append('_');
  74. }
  75. }
  76. } else {
  77. builder.Append('_');
  78. }
  79. }
  80. }
  81. builder.Append(char.ToLower(ch));
  82. }
  83. return builder.ToString();
  84. }
  85. }
  86. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/550364
推荐阅读
相关标签
  

闽ICP备14008679号