首先,我正在学习yii2。
我想通过添加“ desc”“ sort”(降序排列重定向到特定的URL)我有一个带有4列的网格视图。
我想重定向,默认情况下在URL中添加排序。
我已添加URL
return $this->redirect(array('city/index','UserCitySearch[citytype]' => 54));
在上述重定向中,我需要按sorting
顺序添加"added_time"
的descending
。
任何人都可以帮助我如何在重定向URL中添加此排序。
取决于您用于排序的组件及其配置方式。
如果使用默认值的标准yii\data\Sort
,则需要设置的参数为sort
,并通过在列名前面加上-
作为降序。
return $this->redirect(array(
'city/index',
'UserCitySearch[citytype]' => 54,
'sort' => '-added_time',
));
参数名称取决于yii\data\Sort::$sortParam
属性。