赞
踩
今天调试代码的时候出现以下问题,在部分 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}
- export default function formatDate(dataStr) {
- const date = new Date(dataStr);
- if (!isNaN(date)) {
- const year = date.getFullYear();
- const month = String(date.getMonth() + 1).padStart(2, '0');
- const day = String(date.getDate()).padStart(2, '0');
- const hours = String(date.getHours()).padStart(2, '0');
- const minutes = String(date.getMinutes()).padStart(2, '0');
- const seconds = String(date.getSeconds()).padStart(2, '0');
-
- return `${year}/${month}/${day} ${hours}:${minutes}:${seconds}`;
- } else {
- // 无法解析日期,返回原始字符串或抛出错误,取决于需求
- return dataStr;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。