vue 时间戳是1680609823,<view>1680609823</view>,把view中的时间戳转换成具体时间,具体到秒显示的方法。
时间: 2024-05-15 22:14:36 浏览: 146
vue将时间戳转换成自定义时间格式的方法
5星 · 资源好评率100%
可以使用JavaScript中的Date对象来实现时间戳转换成具体时间。具体代码如下:
```javascript
let timestamp = 1680609823;
let date = new Date(timestamp * 1000);
let time = date.toLocaleString();
console.log(time); // 输出格式为:年/月/日 上午/下午 时:分:秒
```
在Vue中,可以在相应的组件中使用上述代码进行时间戳的转换。例如:
```html
<template>
<div>
<view>{{ time }}</view>
</div>
</template>
<script>
export default {
data() {
return {
timestamp: 1680609823
};
},
computed: {
time() {
let date = new Date(this.timestamp * 1000);
return date.toLocaleString();
}
}
};
</script>
```
这样就可以将时间戳1680609823转换成具体时间,并以年/月/日 上午/下午 时:分:秒的格式显示在页面上。
阅读全文