moment时间转换插件
在vue中的使用:
import moment = from “moment”
Vue.prototype.$moment = moment;
获取时间戳 : var res = this.$moment(时间, 'YYYY-MM-DD HH:mm:ss').valueOf();
获取格式时间: var res = this.$moment(时间戳).format('YYYY-MM-DD HH:mm:ss’);
将后端返回的时间戳进行了转换并显示
时间:var time = new Date(); // Tue Aug 28 2018 09:16:06 GMT+0800 (中国标准时间)
时间戳:var timestamp = Date.parse(time); // 1535419062000 (Date.parse() 默认不取毫秒,即后三位毫秒为0)
moment转时间:moment(time).valueOf(); // 1535419062126
moment转时间戳:moment(timestamp).format(); // 2018-08-28T09:17:42+08:00
如果format中不指定格式,则默认返回格式为:2018-08-28T09:17:42+08:00
作者:狗尾草
-------------------------------------------
个性签名:海到无边天作岸,山登绝顶人为峰!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!