uniapp 格式化时间
时间: 2023-09-08 07:11:51 浏览: 152
在 Uniapp 中,你可以使用 JavaScript 的内置 Date 对象来格式化时间。下面是一个示例代码,演示如何格式化时间:
```javascript
<template>
<view>
<button @tap="formatTime">格式化时间</button>
<text>{{ formattedTime }}</text>
</view>
</template>
<script>
export default {
data() {
return {
timestamp: 1624735200000, // 以毫秒为单位的时间戳
formattedTime: ''
}
},
methods: {
formatTime() {
const date = new Date(this.timestamp)
const year = date.getFullYear()
const month = this.formatNumber(date.getMonth() + 1)
const day = this.formatNumber(date.getDate())
const hour = this.formatNumber(date.getHours())
const minute = this.formatNumber(date.getMinutes())
const second = this.formatNumber(date.getSeconds())
this.formattedTime = `${year}-${month}-${day} ${hour}:${minute}:${second}`
},
formatNumber(n) {
return n < 10 ? '0' + n : n
}
}
}
</script>
```
在上面的代码中,我们通过点击按钮触发 `formatTime` 方法来格式化时间。`formatTime` 方法中,我们创建了一个 Date 对象,并根据需要的格式提取年、月、日、时、分、秒的信息,并将其拼接成最终的格式化时间字符串。
你可以根据具体需求修改时间戳 `timestamp` 的值,以及格式化时间的方式。
阅读全文