本文介紹了如何從Sequelize中主模型的同級包含模型返回結果?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
這是我在我的項目中完成的代碼和結果。
我想得到包含模型的結果與主模型相同的結果。下面的代碼是我所做的。
序列化查詢:
User.findAll({
include: [{
model: Position,
attributes: ['POSITION_NAME'],
}
]
}).then(user => {
res.json({
data: user
})
}).catch(error => {
console.log(error)
})
我得到的結果
[
{
"ID": 2,
"NAME": "AAA",
"LAST_NAME": "BBB",
"Position": {
"POSITION_NAME": "????????????????"
}
}
]
我想要的結果:
[
{
"ID": 2,
"NAME": "AAA",
"LAST_NAME": "BBB",
"POSITION_NAME": "????????????????"
}
]
推薦答案
試一試。
User.findAll({
attributes: ["ID", "NAME", ["Position.POSITION_NAME", "POSITION_NAME"]],
include: [{
model: Position,
attributes: [],
}
],
raw:true
}).then(user => {
res.json({
data: user
})
}).catch(error => {
console.log(error)
})
這篇關于如何從Sequelize中主模型的同級包含模型返回結果?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,