ASP.NET Core 返回 Json DateTime 格式
程序员文章站
2022-04-04 08:37:04
...
ASP.NET Core 返回 Json 格式的时候,如果返回数据中有
DateTime
类型,如何自定义其格式呢?配置如下:
services.AddMvc().AddJsonOptions(opt =>
{
opt.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm";
});
参考资料:
- Json date being serialized to wrong format
以上就是ASP.NET Core 返回 Json DateTime 格式的详细内容,更多请关注其它相关文章!
上一篇: 把exe注册为windows服务实例教程
下一篇: C#中foreach实例代码
推荐阅读