私は Yii だけでなく PHP も初めてで、私は新しいパイロットであると言えますが、A380 での飛行を学んでいます。
問題は、第6章まですべてがうまく機能していることです。オーナーとリクエスタのドロップダウンに戻るという概念を理解できません
私はそれを並べて実装していますが、私の場合、Issue.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(
'owner' => array(self::BELONGS_TO, 'User', 'owner_id'),
'project' => array(self::BELONGS_TO, 'Project', 'project_id'),
'requester' => array(self::BELONGS_TO, 'User', 'requester_id'),
);
}
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(
'issues' => array(self::HAS_MANY, 'Issue', 'project_id'),
'users' => array(self::MANY_MANY, 'User', 'tbl_project_user_assignment(project_id, user_id)'),
);
}
誰かがこれの働きを説明できれば、私は素晴らしいでしょう
さらに、なぜ self:: を使用したのですか?
前もって感謝します