当前位置:网站首页>时间戳转换为日期格式、获取当前时间戳
时间戳转换为日期格式、获取当前时间戳
2022-08-11 00:10:00 【小任睡不醒`】
将时间戳转换成日期格式
//定义一个方法
filterTime(time) {
let times=time.toString();
if(times.length==10){//如果时间戳为10位给转13位
time=(time*1000)
}
const dateTime = new Date(time)//获取一个时间对象
const Y = dateTime.getFullYear()
const M = dateTime.getMonth() + 1 < 10 ? '0'+(dateTime.getMonth()+1) : dateTime.getMonth()+1
const D = dateTime.getDate()< 10 ? '0'+(dateTime.getDate()) : dateTime.getDate()
const h = (dateTime.getHours() < 10 ? '0' + dateTime.getHours() : dateTime.getHours())
const m = (dateTime.getMinutes() < 10 ? '0' + dateTime.getMinutes() : dateTime.getMinutes())
const s=(dateTime.getSeconds() < 10 ? '0' + dateTime.getSeconds() : dateTime.getSeconds())
//组装一下
return `${Y}-${M}-${D} ${h}:${m}:${s}`
},
调用方法
let newTime= Date.parse(new Date());//获取当前时间
newTime=this.filterTime(newTime)
打印出来当前时间
边栏推荐
- Web APIs BOM- 操作浏览器之综合案例
- Dump file generation, content, and analysis
- SQL注入基础
- App regression testing, what are the efficient testing methods?
- YOLOv5的Tricks | 【Trick12】YOLOv5使用的数据增强方法汇总
- SAS数据处理技术(一)
- I caught a 10-year-old Ali test developer, and after talking about it, I made a lot of money...
- EN 12467纤维水泥平板产品—CE认证
- iNFTnews | In the Web3 era, users will have data autonomy
- 图像识别和语义分割的区别
猜你喜欢
报错:Client does not support authentication protocol requested by server; consider upgrading MySQL cli
盘点美军的无人机家底
宝塔实测-搭建PHP在线模拟考试系统
SQL injection base
11. Custom Converter
Jvm.分析工具(jconsole,jvisualvm,arthas,jprofiler,mat)
Lens filter---about day and night dual-pass filter
只会懒汉式和饿汉式 你还不懂单例模式!
[Data Visualization] Chart Design Principles
[Excel知识技能] 将文本型数字转换为数值格式
随机推荐
Timers, synchronous and asynchronous APIs, file system modules, file streams
地下管廊可视化管理系统搭建
详谈二叉搜索树
PMP每日一练 | 考试不迷路-8.10(包含敏捷+多选)
11. 自定义转换器
5. Lombok
③ 关系数据库标准语言SQL 数据查询(SELECT)
Is there a way out in the testing industry if it is purely business testing?
nodejs项目连接mysql数据库
CF1286E-Fedya the Potter Strikes Back【KMP,RMQ】
EN 12467纤维水泥平板产品—CE认证
SAS data processing technology (1)
15. 拦截器-HandlerInterceptor
Design and implementation of flower online sales management system
软件测试证书(1)—— 软件评测师
SQL injection base - order by injection, limit, wide byte
Design and Realization of Employment Management System in Colleges and Universities
【经典排序】快速排序
【openpyxl】过滤和排序
【pypdf2】合并PDF、旋转、缩放、裁剪、加密解密、添加水印