vue 前端处理时间转换问题

vue 前端处理json格式的时间显示Date问题
如json返回数据为:/Date(1373333344)/转换成正常的时间日期格式:2019-06-01 00:00:00
主要解决方法步骤:
一、项目下安装依赖(使用时间转换的插件moment):npm install moment --save
二、在项目下找到main.js文件,写入:

import moment from ‘moment/moment’
Vue.filter(‘moment’, function (value, formatString) { formatString = formatString || ‘YYYY-MM-DD HH:mm:ss’; return moment(value).format(formatString);});

三、在需要转换日期格式的vue页面中{{time|moment}},其中time为你返回的变量,moment为转换的方法,若转换不成功,则可以在需要转换日期的页面引入下面的语句即可

import moment from ‘moment/moment’

你可能感兴趣的:(Vue文章,时间日期转换)