WebApi关于配置全局返回Json数据格式时间以及命名小写_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WebApi关于配置全局返回Json数据格式时间以及命名小写

WebApi关于配置全局返回Json数据格式时间以及命名小写

 2017/1/21 5:33:04  坚持的孤独  程序员俱乐部  我要评论(0)
  • 摘要:1.直接在Global文件中配置:1varformatters=GlobalConfiguration.Configuration.Formatters;2varjsonFormatter=formatters.JsonFormatter;3varsettings=jsonFormatter.SerializerSettings;4settings.Formatting=Newtonsoft.Json.Formatting.Indented;5settings
  • 标签:API Web 配置 数据 JSON 全局 JS

1.直接在Global文件中配置:

class="code_img_closed" alt="" src="/Upload/Images/2017012105/0015B68B3C38AA5B.gif">
  1 var formatters = GlobalConfiguration.Configuration.Formatters;
  2 var jsonFormatter = formatters.JsonFormatter;
  3 var settings = jsonFormatter.SerializerSettings;
  4 settings.Formatting = Newtonsoft.Json.Formatting.Indented;
  5 settings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
  6 settings.ContractResolver = new CamelCasePropertyNamesContractResolver();
logs_code_collapse">View Code image

image

2.配置任意的返回格式json和xml

  1config.Formatters.JsonFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "json", "application/json"));
  2config.Formatters.XmlFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "xml", "application/xml"));
View Code

image

3.使用Cors跨域框架配置跨域

image

3.1在webapi控制器下的配置

image

发表评论
用户名: 匿名