ASP.NET Core 返回 Json 格式的时候,如果返回数据中有DateTime类型,如何自定义其格式呢?配置如下:services.AddMvc().AddJsonOptions(opt => { opt.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm"; }); 参考资料:Json date being serialized to wrong format