如何在rails字符串插值中传递没有双引号的字符串?

时间:2015-06-12 14:55:11

标签: ruby-on-rails string-interpolation

我正在构建像query = "'keys.description LIKE?','desc%'" 这样的查询值,以便在活动记录查询中传递条件。

问题是当我将此值存储在字符串

中时
Class.select.where("#{query}")

当我在查询where('keys.description LIKE ?','desc%')中插入它时,等效的sql条件就像这个where(keys.description LIKE ? desc%)而不是{{1}}。

0 个答案:

没有答案