我的环境
ruby 2.0.0-p195
rails (4.0.0.rc1)
activerecord (4.0.0.rc1)
我想按 id 数组对 ActiveRecord 对象进行排序。我尝试按字段排序。
ids = [1,4,2,3]
Foo.where(id: ids).order('FIELD(id, ?)', ids)
然而它失败了。
Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?,?,?,?}), ö, ÷, ï, ñ' at line 1:
然后我尝试
ids = [1,4,2,3]
Foo.where(id: ids).order('FIELD(id, #{ids.join(","))')
这当然是成功。但是我担心它可能存在 SQL 注入风险,因为数组 id 是从会话值生成的。
有没有更好更安全的方法?
提前致谢。