• <legend id='hhX6N'><style id='hhX6N'><dir id='hhX6N'><q id='hhX6N'></q></dir></style></legend>
  • <tfoot id='hhX6N'></tfoot>

      <small id='hhX6N'></small><noframes id='hhX6N'>

      • <bdo id='hhX6N'></bdo><ul id='hhX6N'></ul>

        <i id='hhX6N'><tr id='hhX6N'><dt id='hhX6N'><q id='hhX6N'><span id='hhX6N'><b id='hhX6N'><form id='hhX6N'><ins id='hhX6N'></ins><ul id='hhX6N'></ul><sub id='hhX6N'></sub></form><legend id='hhX6N'></legend><bdo id='hhX6N'><pre id='hhX6N'><center id='hhX6N'></center></pre></bdo></b><th id='hhX6N'></th></span></q></dt></tr></i><div id='hhX6N'><tfoot id='hhX6N'></tfoot><dl id='hhX6N'><fieldset id='hhX6N'></fieldset></dl></div>

        在 Eloquent 中按自定义顺序对集合进行排序

        时间:2023-09-23
          <legend id='L0OQ7'><style id='L0OQ7'><dir id='L0OQ7'><q id='L0OQ7'></q></dir></style></legend>

            <tfoot id='L0OQ7'></tfoot>
                <bdo id='L0OQ7'></bdo><ul id='L0OQ7'></ul>

                    <tbody id='L0OQ7'></tbody>
                • <i id='L0OQ7'><tr id='L0OQ7'><dt id='L0OQ7'><q id='L0OQ7'><span id='L0OQ7'><b id='L0OQ7'><form id='L0OQ7'><ins id='L0OQ7'></ins><ul id='L0OQ7'></ul><sub id='L0OQ7'></sub></form><legend id='L0OQ7'></legend><bdo id='L0OQ7'><pre id='L0OQ7'><center id='L0OQ7'></center></pre></bdo></b><th id='L0OQ7'></th></span></q></dt></tr></i><div id='L0OQ7'><tfoot id='L0OQ7'></tfoot><dl id='L0OQ7'><fieldset id='L0OQ7'></fieldset></dl></div>

                  <small id='L0OQ7'></small><noframes id='L0OQ7'>

                • 本文介绍了在 Eloquent 中按自定义顺序对集合进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一组 ID,如下所示:

                  I have an array of ID's as follows:

                  $ids = [5,6,0,1]
                  

                  使用 Eloquent,我可以使用 ->whereIn('id', $ids) 函数搜索这些 Id.正如预期的那样,这将按 Id 以升序返回结果,有没有办法可以按数组所在的顺序返回结果?或者,按 $ids 数组的顺序转换集合的最简单方法是什么?

                  Using Eloquent I am able to search for these Id's using the ->whereIn('id', $ids) function. This as expected will return the results in the ascending order by Id, is there a way I can return the results on the order the array is in? alternatively whats the easiest way to convert the collection in the order of the $ids array?

                  推荐答案

                  如果您希望记录按特定顺序排列,则必须使用 收集方法:

                  If there's a specific order you'd like the records in, you'd have to use the Collection Methods:

                  要按照您指定的特定顺序获取 ID,您可以使用 sortBy 方法,如下所示,其中 collection 是您的模型集合:

                  To get your ID's in the very specific order you've specified, you can make use of the sortBy method as follows, where collection is your collection of models:

                  $ids = [ 5, 6, 0, 1];
                  
                  $sorted = $collection->sortBy(function($model) use ($ids) {
                      return array_search($model->getKey(), $ids);
                  });
                  
                  // [ 5, 6, 0, 1] // (desired order)
                  

                  要随机化您的集合,您可以使用 shuffle 方法.

                  To randomize your collection you can make use of the shuffle method.

                  $collection = collect([1, 2, 3, 4, 5]);
                  
                  $shuffled = $collection->shuffle();
                  
                  $shuffled->all();
                  
                  // [3, 2, 5, 1, 4] // (generated randomly)
                  

                  请参阅 shuffle 上的 Laravel 文档 和/或 sortBy 以获得更具体的要求.

                  See the Laravel Docs on shuffle and/or sortBy for more specific requirements.

                  如果您没有真正考虑特定的顺序,您可以在 5.2 及更高版本中使用 ->inRandomOrder(),旧版本将需要使用 - 的原始查询>orderBy(DB::raw('RAND()')).

                  If you don't really have a specific order in mind, you can use ->inRandomOrder() in version 5.2 and up, older versions would require the raw query using ->orderBy(DB::raw('RAND()')).

                  这篇关于在 Eloquent 中按自定义顺序对集合进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Laravel 在 withCount 方法上使用 where 子句 下一篇:如何在 Laravel Eloquent 中选择某些字段?

                  相关文章

                  最新文章

                    <bdo id='8KF8L'></bdo><ul id='8KF8L'></ul>

                    <i id='8KF8L'><tr id='8KF8L'><dt id='8KF8L'><q id='8KF8L'><span id='8KF8L'><b id='8KF8L'><form id='8KF8L'><ins id='8KF8L'></ins><ul id='8KF8L'></ul><sub id='8KF8L'></sub></form><legend id='8KF8L'></legend><bdo id='8KF8L'><pre id='8KF8L'><center id='8KF8L'></center></pre></bdo></b><th id='8KF8L'></th></span></q></dt></tr></i><div id='8KF8L'><tfoot id='8KF8L'></tfoot><dl id='8KF8L'><fieldset id='8KF8L'></fieldset></dl></div>
                  1. <tfoot id='8KF8L'></tfoot>

                    <legend id='8KF8L'><style id='8KF8L'><dir id='8KF8L'><q id='8KF8L'></q></dir></style></legend>
                  2. <small id='8KF8L'></small><noframes id='8KF8L'>