Sequelize how to find rows with multiple where clauses and timestamp gt; NOW()(续集如何查找具有多个where子句和时间戳的行gt;现在())
问题描述
如何使用 Sequelize 做到这一点?
How do I do this with Sequelize?
SELECT FROM sessions WHERE user_id = ? AND token = ? AND expires > NOW()
这是我想要做的(假设 Session
是一个 Sequelize 模型):
Here's what I'm trying to do (assume Session
is a Sequelize model):
Session.find({
where: {
user_id: someNumber,
token: someString,
//expires > NOW() (how do I do this?)
}
}).on('success', function (s) { /* things and stuff */ });
谢谢!
推荐答案
你有没有尝试在sequelize中使用finders的数组表示法?
did you try to use the array notation of finders in sequelize?
Session.find({
where: ['user_id=? and token=? and expires > NOW()', someNumber, someString]
}).on('success', function (s) { /* things and stuff */ });
您可以查看此页面:http://sequelizejs.com/?active=find-objects#find-对象
希望这可行.否则这是一个错误:D
Hope this works. Otherwise it's a bug :D
这篇关于续集如何查找具有多个where子句和时间戳的行>现在()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:续集如何查找具有多个where子句和时间戳的行>现在()
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01