猫鼬模型快速关系

时间:2014-07-17 08:41:32

标签: node.js mongodb yii mongoose

有没有办法在mongoose中进行模型之间的快速关系引用?

例如在Yii中,可以引用相关的模型,如:

$player->team->league->name;

在mongoose中,我目前不得不使用findById:

Team.findById(player.team_id, function(err,team){
   if (team != null && !err){
      League.findById(team.league_id, function(err,league){
         if (league != null && !err){
            console.log(league.name);
        (..)

0 个答案:

没有答案