WebApi关于配置全局返回Json数据格式时间以及命名小写
2021-04-07 18:28
标签:格式 date .config global gif .json http property view 1.直接在Global文件中配置: var formatters = GlobalConfiguration.Configuration.Formatters; 2.配置任意的返回格式json和xml 3.使用Cors跨域框架配置跨域 3.1在webapi控制器下的配置 WebApi关于配置全局返回Json数据格式时间以及命名小写 标签:格式 date .config global gif .json http property view 原文地址:https://www.cnblogs.com/zxtceq/p/9104443.html
var jsonFormatter = formatters.JsonFormatter;
var settings = jsonFormatter.SerializerSettings;
settings.Formatting = Newtonsoft.Json.Formatting.Indented;
settings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
settings.ContractResolver = new CamelCasePropertyNamesContractResolver();View Code 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();
1config.Formatters.JsonFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "json", "application/json"));
2config.Formatters.XmlFormatter.MediaTypeMappings.Add(new QueryStringMapping("format", "xml", "application/xml"));
文章标题:WebApi关于配置全局返回Json数据格式时间以及命名小写
文章链接:http://soscw.com/index.php/essay/72515.html