码迷,mamicode.com
首页 > 移动开发 > 详细

ios的日期格式bug

时间:2019-08-07 17:40:19      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:mes   异常   ||   ios系统   xxxx   时间格式   bsp   div   解决   

一般我们在页面渲染时间的时候都是xxxx-xx-xx,ios系统new Date(xxxx-xx-xx)的时候会报NaN-NaN-NaN NaN:NaN异常,将xxxx-xx-xx的时间格式改为xxxx/xx/xx就可以解决这个问题。使用正则转换:
/* 转换为时间戳 */
function formatTimeStamp(date){
    return Date.parse(new Date(date)) || Date.parse(new Date(date.replace(/-/g,‘/‘)));
}
formatTimeStamp(‘2017-11-11‘);

 

ios的日期格式bug

标签:mes   异常   ||   ios系统   xxxx   时间格式   bsp   div   解决   

原文地址:https://www.cnblogs.com/wkyuan/p/11316541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!