根据出生日期算出年龄

根据出生日期换算年龄

getDate() {
	  // this.value = 2001-05-17  出生日期
      var birthdays = new Date(this.value.replace(/-/g, "/"));
      console.log(‘生日转换时间’,birthdays);
      let d = new Date();
      this.age = d.getFullYear() - birthdays.getFullYear() - (d.getMonth() < birthdays.getMonth() || (d.getMonth() == birthdays.getMonth() && d.getDate() < birthdays.getDate()) ? 1 : 0);
      console.log('年龄', this.age)
    }
上一篇:基于C++的txt文档log数据提取


下一篇:在 Scrapy 中使用 Loguru 记录 log