//代码位置:Startup.cs public void ConfigureServices(IServiceCollection services) { services.AddMvc() .AddJsonOptions ( json => { //统一设置JsonResult中的日期格式 json.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss"; } ); }
基本上所有的人都在DateTime类型的字段,被序列化成json的时候,遇到过可恨的Date(1294499956278+0800);但是又苦于不能全局格式化设置,比较难受。以往的方式,要么使用全局的Newtonsoft的配置,要么自己重写ActionResult,总之都比较麻烦。在Core提供了更为简单更为明了的办法.