我写了这样的代码:
<?= 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']);
}
答案 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以获取更多信息。