作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Sequelize v3.30.4。我无法通过嵌套 JSONB 对象中的字段查询订单。 User I am calling payload
中的这一列具有 priority
字段。我正在使用 postgres 方言。我想知道如果不使用 SQL 原始查询并且如果可能不使用原始查询,您将如何做到这一点。我已经尝试了所有这些评论的方式,我想与您看到的其他 2 条规则一起设置顺序:
function getUsers (id, req, res) {
const sequelize = req.app.context.sequelize;
const User = sequelize.model('user');
const Post = sequelize.model('post');
const Tag = sequelize.model('tag');
return User.findOne({
where: { id },
include: [
Post,
Tag
],
order: [
// ['payload.priority'],
// [sequelize.json('users.payload.priority', 'ASC')],
// [User.payload.priority],
// [User.payload, 'priority', 'ASC'],
// [User, 'payload', 'priority', 'ASC'],
// ['payload', 'priority', 'ASC'],
// ['payload', 'priority'],
[Post, 'rank'],
[Tag, 'rank']
]
...
})
最佳答案
您可以通过以下方式使用它
function getUsers (id, req, res) {
const sequelize = req.app.context.sequelize;
const User = sequelize.model('user');
const Post = sequelize.model('post');
const Tag = sequelize.model('tag');
return User.findOne({
where: { id },
include: [
Post,
Tag
],
order: [
['payload.priority','asc']
]
})
我正在使用 sequelize 版本 4.33.0,它对我来说工作正常这是合并请求的链接 https://github.com/sequelize/sequelize/pull/7565/files/b5d77ecedbe96d47d053cb9f11e10cdf0f84d0ae
如有任何疑问请告知,祝您编码愉快:)
关于postgresql - Sequelize : Query with order by a field in JSONB object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47213802/
我是一名优秀的程序员,十分优秀!