js 处理Json 时间带T 时间格式
Posted 从程序员到架构师,从架构师到产品经理,从产品经理到投资人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 处理Json 时间带T 时间格式相关的知识,希望对你有一定的参考价值。
对于后台传过来的json数据是带T时间格式的坑处理的一些做法总结
new Date(data[j].addtime).toISOString().replace(/T/g, ‘ ‘).replace(/\.[\d]{3}Z/, ‘‘)
仅针对这个问题来说,不需要那么大量的代码即可完成
方案1(适用于中国标准时间):
var date = new Date(+new Date()+8*3600*1000).toISOString().replace(/T/g,‘ ‘).replace(/\.[\d]{3}Z/,‘‘)
方案2(只用于题目中所述的格式转换):
var date = new Date().toLocaleString().replace(/[年月]/g,‘-‘).replace(/[日上下午]/g,‘‘);
方案3(最准确但最麻烦,不推荐):
var date = new Date(); var result = date.getFullYear()+‘-‘+(date.getMonth()+1)+‘-‘+date.getDate()+‘ ‘+date.getHours()+‘:‘+date.getMinutes()+‘:‘+date.getSeconds();
转载 :http://blog.csdn.net/hj7jay/article/details/51433745
以上是关于js 处理Json 时间带T 时间格式的主要内容,如果未能解决你的问题,请参考以下文章
C# 使用linq处理返回带datetime类型数据 json显示/date(xxxxx)/
解决asp.net core 日期格式 datetime Json返回 带T的问题