在发送日期数据前,将日期的时区设置为 UTC,使其与 API 的接收日期的时区保持一致。
示例代码:
从 Angular 发送数据时,使用 toUTCString()
方法将日期对象转化为 UTC 字符串:
const DATE = new Date();
const utcDate = DATE.toUTCString();
// 将 utcDate 发送至 API
在 API 接收到日期时,将 UTC 字符串转为 Date 对象:
const utcDate = "Thu, 24 Dec 2020 00:00:00 GMT";
const dateObj = new Date(utcDate);
// 此时 dateObj 的日期与发送方的日期相同
另外,也可以使用 moment.js 等第三方库来进行时区转化。