dayjs的isSameOrAfter方法未按预期工作。

huangapple go评论167阅读模式
英文:

dayjs isSameOrAfter method not working as expected

问题

根据我对isSameOrAfter方法的理解,当比较给定的日期时,它应该返回false,因为'2023-06-11T23:40:00.000Z'既不是同一天,也不是在'2023-06-12T13:40:00.000Z'之后。

关于为什么会出现这种行为以及如何解决它,我会提供以下信息:

  1. isSameOrAfter方法通常用于比较日期和时间,确保一个日期在另一个日期之后或与其相同。在这种情况下,它比较的是整个日期和时间,包括时、分、秒和毫秒。

  2. 在你的代码示例中,两个日期分别是'2023-06-11T23:40:00.000Z''2023-06-12T13:40:00.000Z',它们之间的时间差跨越了一天,因此isSameOrAfter方法返回false是正确的行为。

  3. 如果你希望仅比较日期部分而忽略时间部分,你可以使用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(&#39;2023-06-11T23:40:00.000Z&#39;).format());

console.log(
  dayjs(&#39;2023-06-11T23:40:00.000Z&#39;).isSameOrAfter(&#39;2023-06-12T13:40:00.000Z&#39;, &#39;day&#39;)
)

console.log(
  dayjs.utc(&#39;2023-06-11T23:40:00.000Z&#39;).isSameOrAfter(&#39;2023-06-12T13:40:00.000Z&#39;, &#39;day&#39;)
)

<!-- language: lang-html -->

&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/dayjs.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/utc.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.8/plugin/isSameOrAfter.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
  dayjs.extend(window.dayjs_plugin_utc);
  dayjs.extend(window.dayjs_plugin_isSameOrAfter);
&lt;/script&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年6月12日 15:50:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/76454562.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定