英文:
dayjs isSameOrAfter method not working as expected
问题
根据我对isSameOrAfter
方法的理解,当比较给定的日期时,它应该返回false
,因为'2023-06-11T23:40:00.000Z'
既不是同一天,也不是在'2023-06-12T13:40:00.000Z'
之后。
关于为什么会出现这种行为以及如何解决它,我会提供以下信息:
-
isSameOrAfter
方法通常用于比较日期和时间,确保一个日期在另一个日期之后或与其相同。在这种情况下,它比较的是整个日期和时间,包括时、分、秒和毫秒。 -
在你的代码示例中,两个日期分别是
'2023-06-11T23:40:00.000Z'
和'2023-06-12T13:40:00.000Z'
,它们之间的时间差跨越了一天,因此isSameOrAfter
方法返回false
是正确的行为。 -
如果你希望仅比较日期部分而忽略时间部分,你可以使用
dayjs
的.isSame()
方法,将第三个参数设置为'day'
,这将只比较日期部分,而不考虑时间。例如:
console.log(dayjs('2023-06-11T23:40:00.000Z').isSame(dayjs('2023-06-12T13:40:00.000Z'), 'day'))
这将返回true
,因为它只比较日期,而不考虑时间。
英文:
console.log(dayjs('2023-06-11T23:40:00.000Z').isSameOrAfter(dayjs('2023-06-12T13:40:00.000Z'), 'day'))
Based on my understanding of the isSameOrAfter
method, it should return false
when comparing the given dates since '2023-06-11T23:40:00.000Z'
is not the same day nor after '2023-06-12T13:40:00.000Z'
.
I would appreciate any insights into why this behavior is occurring and how I can resolve it
答案1
得分: 1
dayjs()
解析日期时使用本地时间,因此如果您的本地时区比协调世界时 (UTC) 提前,日期将是 2023-06-12...
,如果要在 UTC 中解析它,请改用 dayjs().utc()
。
console.log(dayjs('2023-06-11T23:40:00.000Z').format());
console.log(
dayjs('2023-06-11T23:40:00.000Z').isSameOrAfter('2023-06-12T13:40:00.000Z', 'day')
)
console.log(
dayjs.utc('2023-06-11T23:40:00.000Z').isSameOrAfter('2023-06-12T13:40:00.000Z', 'day')
)
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/dayjs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/utc.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/isSameOrAfter.js"></script>
<script>
dayjs.extend(window.dayjs_plugin_utc);
dayjs.extend(window.dayjs_plugin_isSameOrAfter);
</script>
英文:
dayjs()
parses dates in local time, so if your local timezone is ahead of UTC the date will be 2023-06-12...
, if you want to parse it in UTC use dayjs().utc()
instead.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
console.log(dayjs('2023-06-11T23:40:00.000Z').format());
console.log(
dayjs('2023-06-11T23:40:00.000Z').isSameOrAfter('2023-06-12T13:40:00.000Z', 'day')
)
console.log(
dayjs.utc('2023-06-11T23:40:00.000Z').isSameOrAfter('2023-06-12T13:40:00.000Z', 'day')
)
<!-- language: lang-html -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/dayjs.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/utc.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/isSameOrAfter.js"></script>
<script>
dayjs.extend(window.dayjs_plugin_utc);
dayjs.extend(window.dayjs_plugin_isSameOrAfter);
</script>
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论