当前位置:   article > 正文

微信小程序,IOS兼容日期格式问题,注意ios高低版本兼容性不一致_时间格式兼容ios

时间格式兼容ios

问题描述:

今天调试代码的时候出现以下问题,在部分 iOS 下无法正常使用,iOS 只支持 "yyyy/MM/dd"、"yyyy/MM/dd HH:mm:ss"、"yyyy-MM-dd"、"yyyy-MM-ddTHH:mm:ss"、"yyyy-MM-ddTHH:mm:ss+HH:mm" 的格式   当时页面展示时间格式为,yyyy-mm-dd  hh:mm:ss。

解决方法:

修改为ios支持的时间格式 比如 yyyy/mm/dd  hh:mm:ss  ,例如如下时间格式转换  格式为

${year}/${month}/${day} ${hours}:${minutes}:${seconds}

  1. export default function formatDate(dataStr) {
  2. const date = new Date(dataStr);
  3. if (!isNaN(date)) {
  4. const year = date.getFullYear();
  5. const month = String(date.getMonth() + 1).padStart(2, '0');
  6. const day = String(date.getDate()).padStart(2, '0');
  7. const hours = String(date.getHours()).padStart(2, '0');
  8. const minutes = String(date.getMinutes()).padStart(2, '0');
  9. const seconds = String(date.getSeconds()).padStart(2, '0');
  10. return `${year}/${month}/${day} ${hours}:${minutes}:${seconds}`;
  11. } else {
  12. // 无法解析日期,返回原始字符串或抛出错误,取决于需求
  13. return dataStr;
  14. }
  15. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/683186
推荐阅读
相关标签
  

闽ICP备14008679号