与 moment js 比较日期和时间

发布于 2025-01-21 01:53:03 字数 289 浏览 0 评论 0原文

在我的React应用程序中,我将收到一个末日,也单独收到终结时间。我必须检查该末日和终结时间是否在当前日期和时间之前。

let endDate = "04/13/2022"; 
let endTime = "22:00"
console.log(moment(endDate, "MM/DD/YYYY", endTime).isBefore(moment());
//true

今天的日期与末日相同,但时间比末日早,因此我应该看到false而不是true。时间没有被比较。有人知道如何解决这个问题吗?

In my react app I am receiving an endDate, and also separately receiving an endTime. I have to check if that endDate and endTime are before the current date and time.

let endDate = "04/13/2022"; 
let endTime = "22:00"
console.log(moment(endDate, "MM/DD/YYYY", endTime).isBefore(moment());
//true

Today's date is the same as the endDate but the time is earlier than the endTime so I should see False instead of true. The times are not being compared. Does anyone know how to resolve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝不放开 2025-01-28 01:53:03

将日期和时间字符串结合在一起,并将其解析为一个全日期字符串。

const endDate = '04/13/2022'; 
const endTime = '22:00';

const date = moment(`${endDate} ${endTime}`, 'MM/DD/YYYY HH:mm');

console.log(date.isBefore(moment())); // false
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.2/moment.min.js"></script>

Combine the date and time strings, and parse as one full date-time string.

const endDate = '04/13/2022'; 
const endTime = '22:00';

const date = moment(`${endDate} ${endTime}`, 'MM/DD/YYYY HH:mm');

console.log(date.isBefore(moment())); // false
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.2/moment.min.js"></script>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文