微信小程序日期格式化报错: iOS 下无法正常使用,iOS 只支持 “yyyy/MM/dd“、“yyyy/MM/dd HH:mm:ss“、“yyyy-

微信小程序日期格式化报错

报错内容

at formatDate (http://127.0.0.1:10118/appservice-hotreload/pages/index/index.js?=1;:103:18)

new Date("2024-11-27 15:05:23") 在部分 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" 的格式

解决办法

既然不支持那就按提示改一下

bash 复制代码
//日期格式化
const formatDate = (dateString) => {
    //将yyyy-MM-dd HH:mm:ss格式的日期字符串替换成yyyy/MM/dd HH:mm:ss的日期字符串
	dateString=dateString.replace(/-/g, '/')
	
    const date=new Date(dateString);
    const year = date.getFullYear()
    let month = date.getMonth() + 1
    month = month < 10 ? '0' + month : month
    let day = date.getDate()
    day = day < 10 ? ('0' + day) : day
    return year + '-' + month+'-' + day 
}
相关推荐
hurrycry_小亦2 小时前
苹果WWDC 2026前瞻:Ferret-Pro端侧大模型即将亮相|小亦之闻|AI 编程三日速递!(5月26日~5月28日)
macos·ios·wwdc
double_eggm2 小时前
微信小程序7
微信小程序·小程序
程序鉴定师3 小时前
上海小程序开发的坚实保障与行业优势解析
大数据·小程序
UTF_85 小时前
一次NSMutableAttributedString误用的思考
ios·面试·github
人月神话-Lee9 小时前
【图像处理】Core Image 与 GPU 渲染管线——让滤镜飞起来
图像处理·人工智能·ios·chatgpt·ai编程·swift·gpu
夏天的峰没有风14 小时前
Typora+gitcode+picgo搭建免费图床
开发语言·ios·swift
double_eggm14 小时前
微信小程序8
微信小程序·小程序
库奇噜啦呼14 小时前
【iOS】源码学习-分类、扩展、关联对象
学习·ios·分类
MageGojo14 小时前
小程序每日一谜怎么做:riddle 接口接入示例
windows·小程序·apache·谜语
kyh10033811201 天前
Cocos Creator 《打螺丝消除游戏》源码+实现
游戏·微信小程序·小程序·打螺丝小游戏源码·微笑小游戏源码