Wed Jan 20 2021 00:00:00 GMT+0800 (中国标准时间)
格式化为
date参数
var json_date = new Date(date).toJSON(); =》2021-01-19T16:00:00.000Z
转化回来=》
new Date(Date.parse(2021-01-19T16:00:00.000Z))
return new Date(+new Date(json_date) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')=》2021-01-19 16:00:00.000