在 moment js 上使用 endOf('quarter') 后时区发生变化
Time zone getting changed after using endOf('quarter') on moment js
我正在使用以下方法获取季度末:
function convertToMomentDates(dates) {
return dates.map((date) => moment(date).tz("Europe/Rome"));
}
function getEndOfQuarter(dates) {
const lastDate = dates.pop();
if (!lastDate || !lastDate.isValid()) return null;
console.log(lastDate.endOf("quarter").format());
return lastDate.endOf("quarter").format();
}
const dates = [
"2018-10-01T01:00:00+01:00",
"2019-01-01T01:00:00+01:00",
];
const endOfQuarterResult = getEndOfQuarter(convertToMomentDates(dates));
console.log(
endOfQuarterResult ===
"2019-03-31T23:59:59+01:00"
);
document.getElementById('result').innerHTML = endOfQuarterResult;
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.14/moment-timezone-with-data.min.js"></script>
<div id="result"></div>
我的意思是我使用的所有日期都带有 +1:00 偏移量,并且在 endOf 函数之后更改为 +2:00,为了不更改偏移量,正确的实现是什么...
在这种情况下,由于 accoridng Italy/Rome 三月底的时区,预期结果是可以的,在这种情况下,最后一个季度末,偏移量变为 +2。可以在 url 上看到更多信息:https://www.timeanddate.com/time/zone/italy/rome.
我正在使用以下方法获取季度末:
function convertToMomentDates(dates) {
return dates.map((date) => moment(date).tz("Europe/Rome"));
}
function getEndOfQuarter(dates) {
const lastDate = dates.pop();
if (!lastDate || !lastDate.isValid()) return null;
console.log(lastDate.endOf("quarter").format());
return lastDate.endOf("quarter").format();
}
const dates = [
"2018-10-01T01:00:00+01:00",
"2019-01-01T01:00:00+01:00",
];
const endOfQuarterResult = getEndOfQuarter(convertToMomentDates(dates));
console.log(
endOfQuarterResult ===
"2019-03-31T23:59:59+01:00"
);
document.getElementById('result').innerHTML = endOfQuarterResult;
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.14/moment-timezone-with-data.min.js"></script>
<div id="result"></div>
我的意思是我使用的所有日期都带有 +1:00 偏移量,并且在 endOf 函数之后更改为 +2:00,为了不更改偏移量,正确的实现是什么...
在这种情况下,由于 accoridng Italy/Rome 三月底的时区,预期结果是可以的,在这种情况下,最后一个季度末,偏移量变为 +2。可以在 url 上看到更多信息:https://www.timeanddate.com/time/zone/italy/rome.