关于moment.js获取当前时间往前推多少天
一、引入moment.js,在man.js中import moment from 'moment'//导入文件Vue.filter('formate', function (time, format) {if(time){return moment(time).format(format)}})二、在项目中使用就 this.$momentvar startTime...
·
一、引入moment.js,在man.js中
import moment from 'moment'//导入文件
Vue.filter('formate', function (time, format) {
if(time){
return moment(time).format(format)
}
})
二、在项目中使用就 this.$moment
var startTime = this.$moment().format("YYYY-MM-DD HH:mm:ss")
var endTime = this.$moment().subtract(1, "days").format("YYYY-MM-DD HH:mm:ss")
1.获取当前时间
2.往前推1天,1就是要往前推的参数
更多推荐
已为社区贡献9条内容
所有评论(0)