1. 程式人生 > >使用newtonjson解決Json日期格式問題

使用newtonjson解決Json日期格式問題

encoding ignorecas ati align cti val tpm ride serial

使用Json.Net代替最簡單的方法就是使用下面的JsonNetResult 來作為 ActionResult返回。
但是比較麻煩,還有很多其他方法。下面使用我研究的最沒有“侵入性”的方法(什麽是“侵入性”?
引入這個技術對系統的改動量),知道原理、會照著配置即可,不用記住。

下面這種做法是體現了“一夫當關萬夫莫開”的AOP的思想。
1) Install-Package newtonsoft.json
2) 創建一個JsonNetResult繼承自JsonResult(相當於自定義ActionResult)

public class JsonNetResult : JsonResult
    {
        public JsonNetResult()
        {
            Settings = new JsonSerializerSettings
            {
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore,//忽略循環引用,如果設置為Error,則遇到循環引用的時候報錯(建議設置為Error,這樣更規範) 
                DateFormatString = "yyyy-MM-dd HH:mm:ss",//日期格式化,默認的格式也不好看 
                ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver()//json中屬性開頭字母小寫的駝峰命名
            };
        }

        public JsonSerializerSettings Settings { get; private set; }

        public override void ExecuteResult(ControllerContext context)
        {
            if (context == null)
                throw new ArgumentNullException("context");
            if (this.JsonRequestBehavior == JsonRequestBehavior.DenyGet && string.Equals(context.HttpContext.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase))
                throw new InvalidOperationException("JSON GET is not allowed");

            HttpResponseBase response = context.HttpContext.Response;
            response.ContentType = string.IsNullOrEmpty(this.ContentType) ? "application/json" : this.ContentType;
            if (this.ContentEncoding != null)
                response.ContentEncoding = this.ContentEncoding;
            if (this.Data == null)
                return;

            var scriptSerializer = JsonSerializer.Create(this.Settings);
            scriptSerializer.Serialize(response.Output, this.Data);
        }
    }

使用newtonjson解決Json日期格式問題