问题 使用Sequelize.js从关联表中获取值


team table               match table
===========     ================================
tid= name       mid=   date =home_team=away_team
=============   ================================
01 = denver     01 =10.11.13 =   01    =   04
02 = minesota   02 =11.11.13 =   02    =   03
03 = orlando    03 =11.11.13 =   04    =   02
04 = portland   04 =12.11.13 =   03    =   01

我有一个经典的SQL JOIN问题 - 填充匹配数据,无法获取位于另一个表中的主队和客队的名称。

var Team = sequelize.define('Team', { ... });
var Match = sequelize.define('Match',{ .. });

Team.hasOne(Match, {foreignKey: 'home_team', as: 'Home'})
Team.hasOne(Match, {foreignKey: 'away_team', as: 'Away'});

正如我在创建后从Docs中了解到的那样 as: 'Home 和 as: 'Away 我收到一些 吸气鬼和二传手 Match.getHome 但我很困惑。我该怎么用呢

Match.find({where: {id: 1}}).success(function(match) {
    console.log(match);
});

8218
2017-11-22 22:57


起源



答案:


问题在于你的关联。您只定义了团队之间的关联,但现在您想要从匹配到团队的另一种方式。这意味着你必须这样做:

Match.belongsTo(Team, {foreignKey: 'home_team', as: 'Home'});
Match.belongsTo(Team, {foreignKey: 'away_team', as: 'Away'});

之后你就可以做到

Match.find({where: {mid: 1}}).success(function(match) {
    match.getHome().success(function(home_team) {

    });
});

或者您可以使用预先加载:

Match.find({
    where: { mid: 1 }, 
    include: [
        { model: Team, as: 'Home'}
    ]
}).success(function(match) {
    // Here you can access the home team data in match.home
});

如果你想同时拥有主队和客队:

Match.find({
    where: { mid: 1 }, 
    include: [
        { model: Team, as: 'Home'}
        { model: Team, as: 'Away'}
    ]
}).success(function(match) {
    // Here you can access the home team data in match.home and away team in match.away
});

16
2017-11-23 15:46



非常感谢。我对所有这些感到非常困惑 .hasOne() 和 .belongsTo() - khex
你不是唯一一个,我们经常会对这些问题提出疑问。文档中有一个TODO可以使关联类型更清晰,如果你愿意,你可以在那里添加你的声音 github.com/sequelize/sequelize-doc/issues/80 (我是一个续集维护者,这就是为什么我很清楚这些关联:)) - Jan Aagaard Meier
我不确定你最后的评论是什么意思?您可以用您想要实现的结果更新您的问题吗? - Jan Aagaard Meier
什么都没有,我在你之前的回答中找到了答案 bit.ly/IdHfV4 - khex
完美答案,我几乎放弃了这个展示相关表,谢谢 - Faisal


答案:


问题在于你的关联。您只定义了团队之间的关联,但现在您想要从匹配到团队的另一种方式。这意味着你必须这样做:

Match.belongsTo(Team, {foreignKey: 'home_team', as: 'Home'});
Match.belongsTo(Team, {foreignKey: 'away_team', as: 'Away'});

之后你就可以做到

Match.find({where: {mid: 1}}).success(function(match) {
    match.getHome().success(function(home_team) {

    });
});

或者您可以使用预先加载:

Match.find({
    where: { mid: 1 }, 
    include: [
        { model: Team, as: 'Home'}
    ]
}).success(function(match) {
    // Here you can access the home team data in match.home
});

如果你想同时拥有主队和客队:

Match.find({
    where: { mid: 1 }, 
    include: [
        { model: Team, as: 'Home'}
        { model: Team, as: 'Away'}
    ]
}).success(function(match) {
    // Here you can access the home team data in match.home and away team in match.away
});

16
2017-11-23 15:46



非常感谢。我对所有这些感到非常困惑 .hasOne() 和 .belongsTo() - khex
你不是唯一一个,我们经常会对这些问题提出疑问。文档中有一个TODO可以使关联类型更清晰,如果你愿意,你可以在那里添加你的声音 github.com/sequelize/sequelize-doc/issues/80 (我是一个续集维护者,这就是为什么我很清楚这些关联:)) - Jan Aagaard Meier
我不确定你最后的评论是什么意思?您可以用您想要实现的结果更新您的问题吗? - Jan Aagaard Meier
什么都没有,我在你之前的回答中找到了答案 bit.ly/IdHfV4 - khex
完美答案,我几乎放弃了这个展示相关表,谢谢 - Faisal