思考狮身人面像搜索框

发布于 2024-07-26 11:51:32 字数 507 浏览 3 评论 0原文

我正在尝试让 Thinking Sphinx 在我的网站上运行,但我不确定如何设置索引页的搜索框和按钮。 我在我的模型中:

 define_index do
   indexes :name
   indexes description
   where "approved = 'true'"
 end

在我的控制器中:

def index
  @businesses = Business.search params[:search]
end

在我的 index.html.erb 中,我安装了自动完成插件并有:

<h3>Search Business</h3><%= text_field_with_auto_complete :name %>

我只是不知道如何将我的文本框与 Sphinx 链接起来。 我需要创建一个按钮吗? 谢谢你的帮助。

I'm trying to get Thinking Sphinx running on my site but I'm not sure how to set up the search box and button for the index page. I have in my model:

 define_index do
   indexes :name
   indexes description
   where "approved = 'true'"
 end

In my controller:

def index
  @businesses = Business.search params[:search]
end

And in my index.html.erb I installed the autocomplete plugin and have:

<h3>Search Business</h3><%= text_field_with_auto_complete :name %>

I just don't know how to link up my text box with Sphinx. Do I need to create a button? Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我的痛♀有谁懂 2024-08-02 11:51:32

Ryan Bates 的 Railscast on Thinking Sphinx 应该可以为您指明正确的方向。 您可以 查看 Ryan 示例中表单的源代码:

<p>
  <%= text_field_tag :search, params[:search] %>
  <%= submit_tag "Search", :name => nil %>
</p>

Ryan Bates has a Railscast on Thinking Sphinx that should set you in the right direction. You can view the source code for the form in Ryan's example:

<p>
  <%= text_field_tag :search, params[:search] %>
  <%= submit_tag "Search", :name => nil %>
</p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文