将字符串格式化为日期 Vuejs

Format string to date Vuejs

我正在从 API 中获取格式如下的日期字符串:DD_MM_YYYY_hh_mm__ss

我想以这种格式显示字符串:DD/MM/YYYY hh:mm:ss

我怎样才能做到这一点?

一种方式:

const str = '18_03_2022_12_21_34'
// to string
const res = str.split('_')
const r = res.slice(0, 3).join('/') + ' ' + res.slice(-3).join(':')
console.log(r)
// or to date
console.log(new Date(res.slice(0, 3).join('/').split('/').reverse().join('/') + ' ' + res.slice(-3).join(':')))

您可以根据下划线在输入字符串中的位置用适当的字符替换下划线序列:

function convertDate(date) {
    return date.replace(/_+/g, (_, n) => (n < 10) ? "/" : (n > 10) ? ":" : " ");
}

console.log(convertDate("DD_MM_YYYY_hh_mm__ss"));

或者稍微简单一点:

function convertDate(date) {
    let n = 0; return date.replace(/_+/g, () => "// ::"[n++]);
}

console.log(convertDate("DD_MM_YYYY_hh_mm__ss"));

Vue 过滤器

代码:

Vue.filter('stringTodateTime', function ( dateTimeString ) {
    if (!dateTimeString) return ''
    return dateTimeString.replace(/_+/g, (_, n) => (n < 10) ? "/" : (n > 10) ? ":" : " ");
})

用法:

{{ 12_04_2021_12_59_34 | stringTodateTime }}