欢迎来到天天文库
浏览记录
ID:11241958
大小:41.50 KB
页数:16页
时间:2018-07-10
《解决asp.net mvc返回jsonresult中datetime类型数据格式问题方法》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、★精品文档★解决Asp.netMvc返回JsonResult中DateTime类型数据格式问题方法 问题背景:在使用asp.netmvc结合jqueryesayui做一个系统,但是在使用使用this.json方法直接返回一个json对象,在列表中显示时发现datetime类型的数据在转为字符串是它默认转为Date(84923838332223)的格式,在经过查资料发现使用前端来解决这个问题的方法不少,但是我又发现在使用jqueryeasyui时,加载列表数据又不能对数据进行拦截,进行数据格式转换之后再
2、加载,后来发现可以通过自定义JsonResult实现,认为这种方法比较可行,就开始研究我们先来看看jsonResult的源码publicclassJsonResult:ActionResult { publicJsonResult() { this.JsonRequestBehavior=System.Web.Mvc.JsonRequestBehavior.DenyGet; } &nb
3、sp;publicoverridevoidExecuteResult(ControllerContextcontext) 2016全新精品资料-全新公文范文-全程指导写作–独家原创16/16★精品文档★{ if(context==null) { thrownewArgumentNullException(“context”); }&nb
4、sp; if((this.JsonRequestBehavior==System.Web.Mvc.JsonRequestBehavior.DenyGet)&&string.Equals(context.HttpContext.Request.HttpMethod,“GET”,StringComparison.OrdinalIgnoreCase)) { thrownewInvalidOpe
5、rationException(MvcResources.JsonRequest_GetNotAllowed); } HttpResponseBaseresponse=context.HttpContext.Response; if(!string.IsNullOrEmpty(this.ContentType)) { 201
6、6全新精品资料-全新公文范文-全程指导写作–独家原创16/16★精品文档★response.ContentType=this.ContentType; } else { response.ContentType=“application/json”; } if(this.ContentEnc
7、oding!=null) { response.ContentEncoding=this.ContentEncoding; } if(this.Data!=null) { JavaScriptSerializerserializer=newJavaScriptSerializer
8、(); response.Write(serializer.Serialize(this.Data)); } 2016全新精品资料-全新公文范文-全程指导写作–独家原创16/16★精品文档★} publicEncodingContentEncoding{get;set;} publicstring
此文档下载收益归作者所有