如何在 Gridview 中使用相关表格:Yii2

How to work with related tables in the Gridview : Yii2

我的代码是这样写的:

    <?= 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>' : '';
            }
        ],

为了这样显示:

但我认为这是不正确的(即使它有效)。有人可以给我这种代码的正确符号吗?

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

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

你走在正确的轨道上。在您的情况下,您可以使用 $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了解更多信息。