我想通过MomentJS知道为什么这不起作用:
const date = moment().set({
year: 2019,
month: 11,
day: 25,
hours: 11,
minutes: 52
});
// or
const date = moment()
.year(2019),
.month(11),
.day(25),
.hours(11),
.minutes(52);
// returns 2020-01-09T10:52:26.289Z
我需要使用这种结构,而不是这种结构(即正在工作):
moment("2019-11-25T11:52");
我认为这是时区问题,但我不明白...