FindWithOrder 查找输入数组中相同顺序的记录。 支持 Ruby2.2〜2.7 Rails 3.2、4.2、5.0、5.1、5.2、6.0 MySQL,PostgreSQL 安装 将此行添加到您的应用程序的Gemfile中: gem 'find_with_order' 然后执行: $ bundle 或将其自己安装为: $ gem install find_with_order 用法 查找具有ID顺序的记录: find_with_order ids = [ 3 , 1 , 5 ] User . find ( ids ) . map ( & :id ) # => [1,