我的网站上有一个搜索表单,它以这种形式提交网址(那些是标签 ID)
http://localhost:3000/tags?utf8=✓&q=2%2C12%2C44
它适用于第一个标签 ID,但不适用于其他标签 ID
def self.search(query = {})
output = self.scoped
output = output.where(:id => query[:q])
end
标签控制器:
def index
@tags = Tag.search(params)
end