JavaScript 比较当前时间和所选时间
JavaScript compare current time and selected hours
我在数据库中有两组数据,一组是日期,一组是时间。我在日历中显示我的数据。当用户选择日期时,我提出了一个 post 请求,将为用户选择那个时间。我想在用户选择时间结束时创建一个辅助功能我想在前端向他们显示“您选择的时间已过期!”的警报。我正在使用 date-fns 进行日期验证。
到目前为止,这是我的代码:
const { isToday } = require("date-fns");
const helperFunction = (date, time) => {
if (isToday(new Date(date))) {
// in here I want to compare to current time and selected time ("15:30-16:30")
}
};
console.log(helperFunction("2021-06-15", "15:30-16:30"));
试一试
- 不需要 date-fns 进行简单比较
- 我进行字符串比较,它适用于相同长度的字符串。无需为时间创建新日期
我不确定你会将用户时间传递到哪里
const isToday = d => { const d1 = new Date(); return d.getFullYear() === d1.getFullYear() && d.getMonth() === d1.getMonth() && d.getDate() === d1.getDate() }
const helperFunction = (date, time) => {
const [yyyy,mm,dd] = date.split("-");
let d = new Date(yyyy,mm-1,dd);
if (isToday(d)) {
const hhmm = d.toTimeString().match(/(\d{2}:\d{2}):.*/)[1]
const range = time.split("-")
return hhmm >= range[0] && hhmm <= range[1]
}
return false
};
console.log(helperFunction("2021-06-15", "15:30-18:30"));
我在数据库中有两组数据,一组是日期,一组是时间。我在日历中显示我的数据。当用户选择日期时,我提出了一个 post 请求,将为用户选择那个时间。我想在用户选择时间结束时创建一个辅助功能我想在前端向他们显示“您选择的时间已过期!”的警报。我正在使用 date-fns 进行日期验证。
到目前为止,这是我的代码:
const { isToday } = require("date-fns");
const helperFunction = (date, time) => {
if (isToday(new Date(date))) {
// in here I want to compare to current time and selected time ("15:30-16:30")
}
};
console.log(helperFunction("2021-06-15", "15:30-16:30"));
试一试
- 不需要 date-fns 进行简单比较
- 我进行字符串比较,它适用于相同长度的字符串。无需为时间创建新日期
我不确定你会将用户时间传递到哪里
const isToday = d => { const d1 = new Date(); return d.getFullYear() === d1.getFullYear() && d.getMonth() === d1.getMonth() && d.getDate() === d1.getDate() }
const helperFunction = (date, time) => {
const [yyyy,mm,dd] = date.split("-");
let d = new Date(yyyy,mm-1,dd);
if (isToday(d)) {
const hhmm = d.toTimeString().match(/(\d{2}:\d{2}):.*/)[1]
const range = time.split("-")
return hhmm >= range[0] && hhmm <= range[1]
}
return false
};
console.log(helperFunction("2021-06-15", "15:30-18:30"));