JSON.stringify()后Date类型字段差8小时 冰茶 2023-02-16 229 阅读1分钟 今天在向后端传递参数时发现,前端Date类型 2022-01-01 00:00:00 的时间在通过JSON.stringify()之后时间变成了2021-12-31 16:00:00。 可以通过更改 Date.prototype.JSON方法 ,因为moments已经不在维护所以引入了day.js Date.prototype.toJSON = function () { return dayjs(this).format('YYYY-MM-DD HH:mm'); };