美文网首页HBuilder开发网页开发专刊小程序开发实践
uni-app 自定义时间戳转时间,时间转时间戳

uni-app 自定义时间戳转时间,时间转时间戳

作者: 老牛圣斗士 | 来源:发表于2020-02-24 20:56 被阅读0次

    第一:时间戳转换成 “yyyy-MM-dd hh:mm:ss”格式

    定义一个方法方便调用

    happenTimeFun(num){//时间戳数据处理

    let date = new Date(num);

    //时间戳为10位需*1000,时间戳为13位的话不需乘1000

            let y = date.getFullYear();

            let MM = date.getMonth() + 1;

            MM = MM < 10 ? ('0' + MM) : MM;//月补0

            let d = date.getDate();

            d = d < 10 ? ('0' + d) : d;//天补0

            let h = date.getHours();

            h = h < 10 ? ('0' + h) : h;//小时补0

            let m = date.getMinutes();

            m = m < 10 ? ('0' + m) : m;//分钟补0

            let s = date.getSeconds();

            s = s < 10 ? ('0' + s) : s;//秒补0

            return y + '-' + MM + '-' + d + ' ' + h + ':' + m+ ':' + s;

    },

    “yyyy-MM-dd hh:mm:ss”转换成时间戳

    timeProcessing(){

    let timeDate = "2019-06-24 11:08:48";

    let Time = new Date(timeDate);

    console.log(Time)//Mon Jun 24 2019 11:08:48 GMT+0800 (中国标准时间)

    let timestemp = Time.getTime();

    console.log(timestemp)

    //1561345728000

    借鉴了别人的思想带入uni-app还是适合用的

    相关文章

      网友评论

        本文标题:uni-app 自定义时间戳转时间,时间转时间戳

        本文链接:https://www.haomeiwen.com/subject/ujswqhtx.html