// 获取当前日期
nowTime () {
const time = new Date()
console.log (time) // Fri Aug 10 2018 21:28:59 GMT+0800 (中国标准时间)
}
// 日期格式化
const newTime = time.getFullYear() + '-' + (time.getMonth() + 1) + '-' + time.getDate()
console.log(newTime ) // 2018-8-10
// 月份和日 不足两位数时补0
// 定义 appendZero 方法
appendZero (obj) {
if (obj < 10) {
return '0' + obj
} else {
return obj
}
}
const tt = time.getFullYear() + '-' + (appendZero(time.getMonth() + 1)) + '-' + appendZero(time.getDate())
console.log(tt) // 2018-08-10
// 也可以用三元表达式的方式
appendZero (obj) {
return lut = obj < 10 ? "0" + obj : obj
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/66472.html