在vue组件中获取当前日期,并对日期进行格式化YY-MM-DD
mounted() {this.drawLine();this.getCurrentTime();},methods: {//获取当前时间getCurrentTime() {var currenttime = new Date();this.LastTime = this.formatDate(currenttime);},//时间字符串格式化 yyyy-mm-ddformatDate(..
·
mounted() {
this.drawLine();
this.getCurrentTime();
},
methods: {
// 获取当前时间
getCurrentTime() {
var currenttime = new Date();
this.LastTime = this.formatDate(currenttime);
},
// 时间字符串格式化 yyyy-mm-dd
formatDate(date) {
var d = new Date(date),
month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
if (month.length < 2) month = '0' + month;
if (day.length < 2) day = '0' + day;
return [year, month, day].join('-');
},
},
//截取字符串中的特定字符 的前部分和后部分子字符串
// 日期格式化
function aaa(str,key) {
let inde =str.search(key)
let a = str.substring(0,inde)
let b = str.substring(inde+1)
return a+'月'+b+'日';
}
console.log(aaa('01/01','/'))//01月01日
更多推荐
已为社区贡献4条内容
所有评论(0)