标签:
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就是需要序列化的对象
MVC web api 返回JSON的几种方式,JSON时间去T的几种方式。
标签:
原文地址:http://www.cnblogs.com/wuball/p/4231343.html