如何将时间转换为 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
网友评论