サイト全体の検索としてTire(およびRyan Batesのrailscast)を使用してElasticsearchを実装しています。複数のモデルを検索します。current_teamでフィルタリングしたいと思います。私には少なくとも2つの問題があります:
1)フィルターを「チーム2」にハードコーディングしても、結果は返されません。私が実行していた特定のクエリでは、2つ取得する必要があります。数字やチームなど、さまざまな形式を試しましたが、何も試していません。
2)team_idを変数としてフィルターに渡す方法がわかりません。__ .search(params、team)のように送信しようとしましたが、クエリ結果が得られませんでした(これにより、#1のようにチームIDをハードコーディングすることになりました)
私はこれまでGoogleでこれに約6時間を費やしました。私が得た最も近いものは、基本的に「マニュアルを読んでください」と言ったgithubでの同様の質問に対するKarmiの応答でした。:)私はそれを読みました、そして、初心者であるので、私はまだ迷子になっています。
これが現在のコードです。
application.html.erb
<bunch of code>
<%= form_tag searches_path, method: :get do %>
<p>
<%= text_field_tag :query, params[:query] %>
<%= submit_tag "Search", name: nil %>
</p>
<% end %>
<bunch of code>
contacts_controller.rb
class Contact < ActiveRecord::Base
attr_accessible :address_1, :address_2, :city, :first_name, :last_name, :state, :zip, :team_id
has_and_belongs_to_many :properties
belongs_to :user
belongs_to :team
has_many :appointments
before_save :update_name
def update_name
self.name = [first_name, last_name].join(' ')
end
#for elastic search
include Tire::Model::Search
include Tire::Model::Callbacks
def self.search(params)
tire.search(load: true) do
query { string params[:query], default_operator: "AND" } if params[:query].present?
filter :term, :team_id => ['2']
end
end
end
searchs_controller.rb
class SearchesController < ApplicationController
def index
current_team = :current_team
@contacts = Contact.search(params)
@properties = Property.search(params)
# @events = Event.search(params[:query], load: true)
end
def show
end
end
検索:index.html.erb:
<div id="content">
<h1>Search Results</h1>
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Last Name</th>
</tr>
<% @contacts.each do |contact| %>
<tr>
<td><%= contact.first_name %></td>
<td><%= contact.last_name %></td>
<td><%= contact.team_id %></td>
</tr>
<% end %>
</table>
<table>
<tr>
<th>Name</th>
<th>Address 1</th>
</tr>
<% @properties.each do |property| %>
<tr>
<td><%= property.name %></td>
<td><%= property.address_1 %></td>
</tr>
<% end %>
</table>
</div>
プロパティコントローラにも同様の検索機能があることに注意してください。今のところ、連絡先を機能させようとしています。
以下で要求されるcurlコマンドは以下を生成します: