vue 项目中时间的一些处理方法

标题

1.把时间戳转化成相应的日期

  filters: {
     
    timeFiter: function (value) {
     
      let temp = value * 1000;
      var data = new Date(temp);
      var year = data.getFullYear();
      var month = data.getMonth() + 1;
      var day = data.getDay();
      return year + "/" + month + "/" + day;
    },
  },

2.去掉月份前面的第一位0

  // 处理返回的月份(去掉第一位0)
  filters: {
     
    month: function (value) {
     
      return value.replace(/\b(0+)/gi, "");
    }
  },

3.处理当前日期格式

// 处理当前日期
    PrefixZero(num, n) {
     
      return (Array(n).join(0) + num).slice(-n);
    },
    // 拿取当前日期
    addDate() {
     
      let nowDate = new Date();
      let date = {
     
        year: nowDate.getFullYear(),
        month: nowDate.getMonth() + 1,
        date: nowDate.getDate()
      };
      // let systemDate = date.year + "-" + 0 + date.month + "-" + 0 + date.date;
      // 当前年份
      this.getYear = date.year;
      // 处理当前月份数据格式
          this.getMonth = date.month;
      //月份为一位数的情况就在月份前补0
          this.getMonth = this.PrefixZero(this.getMonth, 2);
    },

你可能感兴趣的:(javascript,vue.js,html,html5)