11

在控制器中我有:

public function actionGetItems()
{
    $model = new \app\models\WarehouseItems;
    $items = $model->find()->with(['user'])->asArray()->all();
    return $items;
}

在 WarehouseItem 模型中,我有标准(由 gii 创建)关系声明:

public function getUser()
{
    return $this->hasOne('\dektrium\user\models\User', ['user_id' => 'user_id']);
}

如何控制从“用户”关系中获取哪些列数据?我目前得到所有不好的列,因为这些数据以 JSON 格式发送到 Angular。现在我必须循环遍历 $items 并过滤掉我不想发送的所有列。

4

3 回答 3

18

您应该像这样简单地修改关系查询:

$items = \app\models\WarehouseItems::find()->with([
    'user' => function ($query) {
        $query->select('id, col1, col2');
    }
])->asArray()->all();

阅读更多:http ://www.yiiframework.com/doc-2.0/yii-db-activequerytrait.html#with()-detail

于 2015-10-13T16:40:43.627 回答
2

你的代码应该这样。

public function actionGetItems()
{
    $items = \app\models\WarehouseItems::find()
        ->joinWith([
             /*
              *You need to use alias and then must select index key from parent table
              *and foreign key from child table else your query will give an error as
              *undefined index **relation_key**
              */
            'user as u' => function($query){
                $query->select(['u.user_id', 'u.col1', 'u.col2']);
            }
        ])
        ->asArray()
        ->all();

    return $items;
}
于 2018-02-16T09:23:25.333 回答
0

Inside WarehouseItem 模型

/**
 * @return ActiveQuery
 */
public function getUser()
{
    $query = User::find()
        ->select(['id', 'col1', 'col2'])
        ->where([
            'id' => $this->user_id,
        ]);
    /** 
     * Default hasOne, setup multiple for hasMany
     * $query->multiple = true;
     */
    return $query;
}
于 2019-11-23T21:19:59.660 回答