vue 原生全局过滤器时间戳转日期
时间: 2023-08-13 13:04:26 浏览: 99
vue将后台数据时间戳转换成日期格式
在 Vue 中也可以使用原生的全局过滤器来实现时间戳转日期的功能。以下是一个示例:
```javascript
Vue.filter('formatDate', function(value) {
if (value) {
const date = new Date(value)
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`
}
})
```
然后在模板中使用该过滤器:
```html
<p>{{ timestamp | formatDate }}</p>
```
其中 `timestamp` 是一个包含时间戳的变量。该过滤器会将时间戳转换为形如 `YYYY-MM-DD` 的日期格式。
需要注意的是,使用原生的全局过滤器需要在 Vue 实例化之前定义过滤器。如果需要在 Vue 实例化之后定义过滤器,可以使用 `Vue.prototype.$filter` 方法。例如:
```javascript
Vue.prototype.$filter('formatDate', function(value) {
if (value) {
const date = new Date(value)
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`
}
})
```
然后在模板中使用该过滤器:
```html
<p>{{ timestamp | formatDate }}</p>
```
同样,其中 `timestamp` 是一个包含时间戳的变量。
阅读全文