美文网首页
时间转换

时间转换

作者: 骚包霸天虎 | 来源:发表于2021-04-08 14:22 被阅读0次

    如何将时间转换为 2021年4月8日 下午 14:18

        const lang = 'zh-cn';
        moment.locale(lang);
        const date = Date.now();
        const str = moment(date).format('LLL');
        let ymd, noon, time, dateStr
        if (lang === 'zh-cn') {
           ymd = str.substring(0, str.indexOf('日') + 1);
           noon = str.substring(str.indexOf('日') + 1, str.indexOf('午') + 1);
           const hour = moment(date).hour();
           const min = moment(date).minute();
           time = `${hour}:${min}`;
           dateStr = `${ymd} ${noon} ${time}`;
        }
        return dateStr;
    // cosole 2021年4月8日 下午 14:18
    

    相关文章

      网友评论

          本文标题:时间转换

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