gpt4 book ai didi

javascript - 如何比较Sequelize中的两个日期?

转载 作者:行者123 更新时间:2023-12-03 22:30:08 25 4
gpt4 key购买 nike

我在使用模型查询时遇到问题。
例如,如果我想比较两个日期,一个在数据库中找到,另一个是今天的日期。
我是这样写的。

model.findAll({
where:{
startDate:{
[Op.gt]:now Date().toISOString(),
}
}
})

is this a good way to compare??


最佳答案

试试这个方法:

const { Op } = require('sequelize'); // "npm i sequelize"
const moment = require('moment'); // "npm i moment"

model.findAll({
where: {
startDate: {
// $gt: moment().toDate(), // Sequelize version < 5
[Op.gt]: moment().toDate(), // Sequelize version 5
}
}
});

关于javascript - 如何比较Sequelize中的两个日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67759820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com