重命名:MetaSearch 的搜索参数
我正在使用meta_search 1.1.1 gem 开发rails 3.1.1 和ree-1.8.7。
我想知道是否有任何方法可以重命名 MetaSearch 的 :search 参数:
控制器:
User.metasearch(params[:search])
搜索表单视图:
= form_for @users_search, :url => users_path, :html => {:method => :get} do |f|
= f.label :name_contains
= f.text_field :name_contains
= f.submit
我需要这样做,因为它会干扰页面的另一个文本字段。
I'm working on rails 3.1.1 and ree-1.8.7 with meta_search 1.1.1 gem.
I would like to know if there is any way to rename the :search param of MetaSearch :
the controller:
User.metasearch(params[:search])
the search form view:
= form_for @users_search, :url => users_path, :html => {:method => :get} do |f|
= f.label :name_contains
= f.text_field :name_contains
= f.submit
I need to do this because it interferes with another text field of the page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过一个“as”选项。
请查看 form_for 文档了解更多详细信息。
There is an "as" option you can pass.
Check out form_for documentation for more details.