Yii2 ActiveDataProvider 默认数据排序

老虎说测试 脚本开发字数 121阅读0分24秒阅读模式
摘要Yii2 ActiveDataProvider 默认数据排序

修改$dataProvider为:

$dataProvider = new ActiveDataProvider([
            'query' => $query,
            'sort' => [
                'defaultOrder' => [
                    'date' => SORT_DESC,            
                ]
            ],
        ]);

 文章源自陈学虎-https://chenxuehu.com/article/2019/05/7429.html 文章源自陈学虎-https://chenxuehu.com/article/2019/05/7429.html

 
  • 版权声明:本文为原创文章,转载请附上原文出处链接及本声明。
  • 转载请注明:Yii2 ActiveDataProvider 默认数据排序 | https://chenxuehu.com/article/2019/05/7429.html