用GridView来生成表格时有一个column如:country_id是国家编号,在表格中我想显示对应的国家名称。国家全在变量$countries中。那country_id该怎么弄呢?
GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
...
[ 'attribute' => 'country_id'],
...
],
]);
已经解决了这个要做关联查询的
[