我是新來的PHP,以及Yii的,你可以說,我是一個新的試點,但我學習的A380飛行敏捷Web開發
問題是,這一切都是爲我工作很好,直到第6章 我不明白返回回所有者和請求者的概念DROPDOWNS
我實現它的側面和在我的情況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)'),
);
}
如果有任何一個ca ñ解釋這工作,我會很好
加上爲什麼自我::使用?
在此先感謝
自我::被使用,因爲關係常量'BELONGS_TO','HAS_MANY'等在'CActiveRecord'類http://code.google定義的.com/p/YII /源極/瀏覽/標籤/ 1.1.8 /框架/分貝/ AR/CActiveRecord.php。當你在PHP中使用self :: CONSTANT_NAME時,它首先檢查直接類,然後檢查父類和繼承樹。 – ajsharma
你有看過這個:http://www.yiiframework.com/doc/guide/1.1/en/database.arr? – ldg
謝謝,但不表示感謝 –