過濾器
Vue.js允許你自定義過濾器群井,可被用作一些常見的文本格式化酣难。
過濾器使用:
- mustache插值
- v-bind表達(dá)式
日期轉(zhuǎn)換
- 參數(shù)
時(shí)間戳
13位: 1501663877978 ms
10位: 1501573692 s
注意參數(shù)需要是毫秒 - 結(jié)果
2017-07-20 14:31 周四
filters: {
formatDate: function (value) {
if (!value) return ''
let date = new Date(value * 1000)
let year = date.getFullYear() // 獲取完整的年份(4位,1970)
let month = date.getMonth() + 1 // 獲取月份(0-11,0代表1月,用的時(shí)候記得加上1)
let day = date.getDate() // 獲取日(1-31)
let hour = date.getHours() // 獲取小時(shí)數(shù)(0-23)
let minute = date.getMinutes() // 獲取分鐘數(shù)(0-59)
let weekDay = date.getDay() > 0 ? date.getDay() - 1 : 6 // 獲取星期中的天數(shù)(0-6) 0代表周日
let week = ['一', '二', '三', '四', '五', '六', '日']
return year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ' 周' + week[weekDay]
}
}