本文介绍了在默认的 rest api 中对数据进行排序 - Yii2 框架的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 yii2 中设置了默认的 rest api,当我使用 get 方法运行 "api/web/v1/users" 时,它为我提供了用户列表.
I setup the default rest api in yii2 and it gives me the list of users when I run "api/web/v1/users" using get method.
有什么方法可以对输出数据进行排序,例如 "api/web/v1/users?sort=name desc" ?
Is there any way to sort the output data like "api/web/v1/users?sort=name desc" ?
推荐答案
您可以使用 $action->param 或 $_GET['sort'] 进行添加以使用 dataProvider 进行排序.
You can use $action->param or $_GET['sort'] for add to sort with dataProvider.
这篇关于在默认的 rest api 中对数据进行排序 - Yii2 框架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!