Home  >  Article  >  Web Front-end  >  js processing Json time with T time format (practical practice)

js processing Json time with T time format (practical practice)

亚连
亚连Original
2018-05-18 14:46:035706browse

Summary of some practices for pit processing of json data passed from the background with T time format

new Date(data[j].addtime).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')

Only For this problem, you don’t need such a large amount of code to complete

Option 1 (applicable to China Standard Time):

var date = new Date(+new Date()+8*3600*1000).toISOString().replace(/T/g,' ').replace(/\.[\d]{3}Z/,'');

Option 2 (only used for the format conversion described in the title):

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();

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

详细为你解读tween.js是什么(图文教程)

 js中如何建立model数据模型(代码奉上,简单易懂)

如何在JS中实现打印的方式(结合代码详细解答)

The above is the detailed content of js processing Json time with T time format (practical practice). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn