使用除主键之外的字段的Yii模型关系

The*_*Rat 5 php mysql oop yii

我需要根据不是主键的字段创建关系.许多如何执行此操作的示例基于一对多和多对多关系.我尝试过以下建议但没有成功

YII中的关系不是"ID"作为主键

Yii CActiveRecord:查找相关数据,但不使用主键

Yii与非主键的关系

Yii模型关系连接(HAS_ONE)

我有以下表结构:

+------+---------+-----------+
| id   |   name  | status_id |
+------+---------+-----------+
|  1   | service1| 1         |
+------+---------+-----------+
| 2    | service2| 2         |
+------+---------+-----------+
Run Code Online (Sandbox Code Playgroud)

这是我的表active_service.我也有下表

+----------+----------+---------------------+-----------+
|id        |related_id|related_text         |  text     |
+----------+----------+---------------------+-----------+
|65        |1         |ActiveServices_status|  Open     |
+----------+----------+---------------------+-----------+
|72        |2         |ActiveServices_status|  Active   |
+----------+----------+---------------------+-----------+
|102       |3         |ActiveServices_status|  Closed   |
+----------+----------+---------------------+-----------+
Run Code Online (Sandbox Code Playgroud)

这是我的related_fields表这个表包含用于下拉等的所有字段.它related_text告诉我们它的用途和related_id状态的id,这是我需要链接的字段.因此status_id,active_service表中的相关信息涉及related_id满足条件的related_fields表的字段,即related_text设置为ActiveServices_status.我将如何创建这种关系.这是我迄今为止所做的最好的例子(在ActiveServices模型中).

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(

        'rl_status'=>array(self::BELONGS_TO,'RelatedFields','status_id','condition'=>'related_text = "ActiveServices_status"','on'=>'status_id = related_id'),
    );
}
Run Code Online (Sandbox Code Playgroud)

任何帮助,将不胜感激.

The*_*Rat 13

因此,在尝试了大约100行不同的代码后,最终想出了这个问题.因此,这是对我有用的解决方案.

'rl_status' => array(self::BELONGS_TO, 'RelatedFields', '', 'foreignKey' => array('status_id'=>'related_id'),'condition'=>'related_text = "ActiveServices_status"',
Run Code Online (Sandbox Code Playgroud)