如何使用Gridview中的相关表:Yii2

时间:2015-03-02 13:36:19

标签: php gridview model yii2 relation

我写了这样的代码:

    <?= GridView::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        //['class' => 'yii\grid\SerialColumn'],

        'quantity',
        [
            'header' => 'SN',
            'format' => 'raw',
            'value' => function($data) {
                $product = Product::findOne($data->product_ID);
                return $product->SN_required ? '<span class="glyphicon glyphicon-ok"></span>' : '';
            }
        ],

为了像这样展示:

enter image description here

但我认为这不正确(事情正在发挥作用)。有人可以给我这种代码的正确表示法吗?

我知道这与模型关系有关。在Yii2中已经改变了。

 public function getProduct()
{
    return $this->hasOne(Product::className(), ['ID' => 'product_ID']);
}

1 个答案:

答案 0 :(得分:1)

你走在正确的轨道上。在您的情况下,您可以使用$data->relation访问闭包内的关系:

'value' => function($data) {
    return $data->product->SN_required ? '<span class="glyphicon glyphicon-ok"></span>' : '';
}

您可以查看Yii2 page on working with relations in data widgets以获取更多信息。