思考狮身人面像搜索框
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ryan Bates 的 Railscast on Thinking Sphinx 应该可以为您指明正确的方向。 您可以 查看 Ryan 示例中表单的源代码:
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: