gpt4 book ai didi

javascript - 如何在其他人建模的地方使用 sequelize?

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

const {
group,
} = req.query
const where = {}

if (group) where['$Group.title$'] = group

models.User
.findAll({
where,
attributes: getAttributes({model: 'User'}),
include: [{
model: models.Group,
attributes: ['title']
}, {
model: models.PointHistory
}]
})
.then(result => {
res.json(result)
})
.catch(err => next(err))

这是我的代码。 $Group.title$ 不起作用。
我想按组名添加搜索选项。但这是另一种模式。
我该如何解决?

最佳答案

试试这个

models.User
.findAll({
where,
attributes: getAttributes({model: 'User'}),
include: [{
model: models.Group,
attributes: ['title'],
where: {
title: {
$like: //yourSeachString
}
}
}, {
model: models.PointHistory
}]
})
.then(result => {
res.json(result)
})
.catch(err => next(err))

关于javascript - 如何在其他人建模的地方使用 sequelize?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48292692/

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