时间戳转日期

来源:互联网 发布:erp开源软件 编辑:程序博客网 时间:2024/05/23 20:35

JavaScript时间格式转换总结 
1.当前系统区域设置格式(toLocaleDateString和toLocaleTimeString) 
例子:(new Date()).toLocaleDateString() + " " + (new Date()).toLocaleTimeString()
结果: 2008年1月29日 16:13:11
2.普通字符串(toDateString和toTimeString) 
例子: (new Date()).toDateString() + " " + (new Date()).toTimeString()
结果:Tue Jan 29 2008 16:13:11 UTC+0800
3.格林威治标准时间(toGMTString) 
例子: (new Date()).toGMTString()
结果:Tue, 29 Jan 2008 08:13:11 UTC
4.全球标准时间(toUTCString) 
例子: (new Date()).toUTCString()
结果:Tue, 29 Jan 2008 08:13:11 UTC
5.Date对象字符串(toString) 
例子: (new Date()).toString()
结果:Tue Jan 29 16:13:11 UTC+0800 2008 
这是我在移动端开发的时候遇到的问题:

后台返回给我的都是时间戳,我用上面的方法处理后在谷歌的模拟器和微信内置浏览器中打开 都会得到想要的结果(2017/10/17),

然而在uc浏览器和手机自带浏览器(华为)中确是英文的格式(Tuesday October 17),用了我能想到的所有处理时间戳的方法,发现并不能在这两个浏览器中得到想要的结果。

最后让后台返回给处理好的日期字符串,好了。  QAQ  

原创粉丝点击