1

我的 yii 应用程序有一个奇怪的问题。我的数据库 Players 中有两个表 - id、name、team_id 和 Teams - id、name。我可以创建新玩家,但是当我想查看玩家的个人资料时,会出现错误 - “尝试获取非对象的属性”:

'value'=>$model->team->NAME,

最奇怪的问题是,当我为 ID 1 和 2 的玩家测试 url 时,一切正常,我看到了正确的信息,但对于其他 ID,我遇到了这个问题。这是我的代码的一部分:

视图.php

<?php $this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
    'ID',
    'NAME',
    'TEAM_ID', 
    array(
        'label'=>'Отбор',
        'type'=>'text',
        'value'=>$model->team->NAME,
    ),
),
)); ?>

玩家.php

public function relations()
    return array(
      'team' => array(self::BELONGS_TO, 'TEAMS', 'ID'),
    );
}

团队.php

public function relations()
{
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'player' => array(self::HAS_MANY, 'PLAYERS', 'ID'),
    );
}

玩家控制器.php

public function actionView($id)
{
    $teams = new CActiveDataProvider('Teams');
    $players = new CActiveDataProvider('Players');
    $this->render('view', array(
        'model'=>$this->loadModel($id),
    ));
}
4

1 回答 1

4

似乎您需要修复模型relations中的错误Players

public function relations()
    return array(
      'team' => array(self::BELONGS_TO, 'TEAMS', 'TEAM_ID'), // TEAM_ID instead of ID
    );
}
于 2012-08-20T19:50:28.643 回答