MVC web api 返回JSON的几种方式,JSON时间去T的几种方式。_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > MVC web api 返回JSON的几种方式,JSON时间去T的几种方式。

MVC web api 返回JSON的几种方式,JSON时间去T的几种方式。

 2015/1/18 2:51:46  wuball  程序员俱乐部  我要评论(0)
  • 摘要:MVCwebapi返回JSON的几种方式1、在WebApiConfig的Register中加入以下代码1config.Formatters.JsonFormatter.SupportedMediaTypes.Add(newMediaTypeHeaderValue("text/html"));2、在WebApiConfig的Register中加入以下代码1config.Formatters.Remove(config.Formatters.XmlFormatter);3
  • 标签:MVC API Web 方式 JSON JS

MVC web api 返回JSON的几种方式

1、在WebApiConfig的Register中加入以下代码

1 config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html")); 

2、在WebApiConfig的Register中加入以下代码

1 config.Formatters.Remove(config.Formatters.XmlFormatter);

3、在WebApiApplication的Application_Start中加入以下代码

1 GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();

 

1、在MVC中全局去除时间格式中带T的问题。

在WebApiConfig的Register中加入以下代码

1 GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.Converters.Add(new IsoDateTimeConverter
2             {
3                 DateTimeFormat = "yyyy'-'MM'-'dd' 'HH':'mm':'ss"
4             });

2、在webservice中去除时间带T的问题。

1 IsoDateTimeConverter timejson = new IsoDateTimeConverter
2      {
3          DateTimeFormat = "yyyy'-'MM'-'dd' 'HH':'mm':'ss"
4      };
5 序列化的时候传入timejson对象
6 如:
7 return JsonConvert.SerializeObject(object, timejson);//object就是需要序列化的对象

 

发表评论
用户名: 匿名