在做前台展示时,时间格式不对2019-07-05T03:56:21.000+0000这种
解决办法:
- 定义一个方法
function changeTime(date) {
var newDate = new Date(date).toJSON();
return new Date(+new Date(newDate) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')
}
- 然后调用
{name : 'createDate',width : 150,
//获取日期列的值进行转换
formatter: function (value, row, index) {
return renderTime(value)
}
}
- 最终效果