laravel 模型查询按照whereIn排序的示例 实例如下所示:$ids=[5,7,3,1,2];$data=Content::whereIn('id',$ids)->select('id')->get();//查询结果是想 模型查询