uni-app页面动态获取当前时间
uniapp页面动态获取当前时间
·
uni-app在APP端实现实时更新时间展示,页面每一秒都会刷新时间进行更新
<uni-dateformat :date="timer"></uni-dateformat>
timer:' '
getTime(){
setInterval(() =>{this.timer = Date.now()} ,1000)
}
created() {
this.getTime()
}
全局方法中调用getTime()方法,实现每一秒都更新,如果需要一定延迟,可以在timer后面-1000实现一秒延迟。
实现效果:
更多推荐
已为社区贡献3条内容
所有评论(0)