gpt4 book ai didi

node.js - Sequelize 错误的查询?查找参数

转载 作者:行者123 更新时间:2023-12-03 22:20:34 24 4
gpt4 key购买 nike

右图为MongoDB代码,左图为Sequelize代码。打印console.log(findArgs),前端部分没有报错,但是findArgs不行。
findArgs 是过滤部分。
Sequelize 代码不起作用。我认为划线部分是错误的,但我不知道。
它通过按下键值来响应后端路由器,但不响应 UI。
MongoDB 代码

router.post('/AllLists', (req, res) => {

let limit = req.body.limit ? parseInt(req.body.limit) : 20;
let skip = req.body.skip ? parseInt(req.body.skip) : 0;
let findArgs = {};

for(let key in req.body.filters) {
if (req.body.filters[key].length > 0) { // continet or price
console.log('key', key)
findArgs[key] = req.body.filters[key];
}
}
console.log(findArgs)

Product.find(findArgs)
.populate("writer")
.skip(skip)
.limit(limit)
.exec((err, productInfo) => {
if(err) return res.status(400).json({ success: false, err })

return res.status(200).json({
success: true, productInfo,
postSize: productInfo.length
})
})
})
Sequelize 代码
router.post('/AllLists', async (req, res, next ) => {
let limit = req.body.limit ? parseInt(req.body.limit) : 20;
let skip = req.body.skip ? parseInt(req.body.skip) : 0;
let findArgs = {};

for(let key in req.body.filters) {
if(req.body.filters[key].length > 0) {
findArgs[key] = req.body.filters[key];
}
}
console.log('findArgs', findArgs);
try {
const productInfo = await Product.findAll({
findArgs,
limit: limit,
offset: skip,
include: [
{
model: Image,
attributes: ['src']
},

],
});
res.status(200).json({ success: true, productInfo, postSize: productInfo.length});
} catch (err) {
console.error(err);
next(err);
}
})

输出到后端路由器。当键值被按下时
findArgs { Brand: [ 2 ] }
Sequelize 中的 findArgs 查询是否错误?

最佳答案

首先,您需要了解 Sequelize 是 ORM(对象关系映射),它仅用于关系数据库(MySQL、Postgres 等)。
对于非关系型数据库MongoDB,可以使用mongoose ODM(Object Document Mapping)

关于node.js - Sequelize 错误的查询?查找参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67617721/

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