其他分享
首页 > 其他分享> > 轻量化时间插件moment.js的基本使用

轻量化时间插件moment.js的基本使用

作者:互联网

轻量化时间插件moment.js的基本使用

npm install moment

基本调用方式

  1. js中调用moment
    let nowTime = moment() //获取当前的时间和日期

  2. 格式化展示
    moment().format() //将当前事件按照指定格式展示,请阅读文档

  3. 自定义更改现有的语言环境(此插件默认国外时间格式)

moment.updateLocale('zh-cn',{
    weekdays: '周日_周一_周二_周三_周四_周五_周六'.split('_')    
})

Vue里最基本的展示时钟

  data() {
    return {
      date:'',  // 事件
      timer:null  // 定时器ID
    };
  },
  mounted() {
    moment.locale('zh-cn', {
      weekdays: '周日_周一_周二_周三_周四_周五_周六'.split('_')
    })
    this.updateTime()
  },
  beforeDestroy() {
    clearTimeout(this.timer)
    this.timer = null
  },
  methods: {
    // 更新时间
    updateTime(){
      const that = this
      that.date = moment().format('YYYY-MM-DD dddd kk:mm')
      if (that.timer) {
        clearTimeout(that.timer)
        that.timer=null
      }
      that.timer = setTimeout(() => {
        that.updateTime()
      }, 10000);
    }
  }

标签:updateTime,插件,timer,js,moment,null
来源: https://www.cnblogs.com/wanglei1900/p/16614615.html