美文网首页
ionic时间戳转日期格式

ionic时间戳转日期格式

作者: 大大大大橙子呦 | 来源:发表于2019-02-27 21:10 被阅读0次

    举例:
    从1546323134000----转到“ 2019/1/1 14:12:14 ”
    通过调用下面convertToDate()方法来达到目的。

    // 注意,参数为Long类型(我这里参数是从后端获取的)
        const ucheckTime = this.convertToDate(1546323134000);   
        //结果:ucheckTime  = ‘2019/1/1 14:12:14 ’
    
        /**
         * 时间戳转string类型日期
         * 2019年2月27日20点53分
         */
        convertToDate(nows) {
            const now = new Date(nows);
            const year = now.getFullYear();
            const month = now.getMonth() + 1;
            const date = now.getDate();
            const hour = now.getHours();
            const minute = now.getMinutes();
            const second = now.getSeconds();
            return year + '-' + month + '-' + date + ' ' + hour + ':' + minute + ':' + second;
        }
    

    相关文章

      网友评论

          本文标题:ionic时间戳转日期格式

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