YII中的关系问题

时间:2012-05-15 05:42:28

标签: yii

我在Agent模型中有一个GetStudents函数。我在哪里取得与代理人有关的学生。

但我想从另一张桌子上展示更多学生的领域 例如

**Agent table**  (agent has students)
agent_id

**student table**
STUDENTID  pkey
agent_id

**relation table** (this table creates relation between student and household)
StudentID  HOUSEHOLDID

**HOUSEHOLD TABLE** 
HouseHOLDID   Householdname

我想在获取所有学生详细信息时获取家喻户晓。

因为我是YII的新手,所以真的看起来很棒。

代理模型中的MY功能。

public static function getStudents($id) {
        $relationships = Relationship::model()->findAll('type = :type AND source = :agent_id', array(':type' => 2, ':agent_id' => $id));
        //$relationships=sort($relationships);
        // Generate relationship array

        //print_r($relationships);
        foreach ($relationships as $relationship) {
            $in[] = $relationship->destination;
        }

        // Generate db condition
        $criteria = new CDbCriteria;
        if (! isset($in) || ! is_array($in) || sizeOf($in) == 0) {
            $in[] = -999;
        }
        $criteria->addInCondition('StudentID', $in, 'OR');



        return new CActiveDataProvider('Student', array(
            'criteria' => $criteria,
            'sort'=>array('defaultOrder'=>array(
    'StudentID'=>CSort::SORT_DESC,
)),
        ));
    } 

我的代码是通过将ID传递到其中来获取数据

<?php $this->widget('zii.widgets.CDetailView', array(
    'data' => $model,
    'attributes' => array(
array(
    'label' => 'Agent Details',
    'type' => 'raw',
    'value' => '',
    'cssClass' => 'heading',
),
'agent_id',
'user.email',
'first_name',
'last_name',
'company',
'phone',
    ),
)); ?>

任何帮助都会有很大的帮助。

由于 抗体

1 个答案:

答案 0 :(得分:2)

首先,您应该将学生与relations中的relation model数组中的关系表建立关系。

'student'=>array(self::BELONGS_TO, 'Student', 'StudentID'), //after belongs to student is model class name

'household'=>array(self::BELONGS_TO, 'HOUSEHOLD', 'HOUSEHOLDID'),//after belongs to HOUSEHOLD is model class name

然后你可以用这样的活动记录来获取所有记录......

 $relationships = Relationship::model()->with('student','household')->findAll('type = :type AND source = :agent_id', array(':type' => 2, ':agent_id' => $id));