重命名:MetaSearch 的搜索参数

发布于 2024-12-21 01:45:51 字数 417 浏览 2 评论 0原文

我正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界和平 2024-12-28 01:45:51

您可以通过一个“as”选项。

form_for @users_search, :as => 'q', :url => users_path, :html => {:method => :get} do |f|

请查看 form_for 文档了解更多详细信息。

There is an "as" option you can pass.

form_for @users_search, :as => 'q', :url => users_path, :html => {:method => :get} do |f|

Check out form_for documentation for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文