1

ジェム タイヤを使用してアプリケーションで検索しようとしています。Areas、Cities、Hotels、Rooms、および RoomInformation というテーブルがあります。

私が必要としているのは、クエリによるホテルの検索と、date_from、date_to、および部屋数などの他のテキスト フィールドです。モデルには、ホテルに空き部屋があるかどうかを計算し、ブール値を送信するメソッドがあります。このブールメソッドを使用してクエリをフィルタリングするにはどうすればよいですか?

ありがとうございました

hotel.html.erb で

<%= form_tag search_hotels_path, :method => 'post' do %>
  <%= label_tag :query %>
  <%= text_field_tag :query, params[:query] %>
  <%= label_tag 'From' %>
  <%= text_field_tag :date_f, params[:date_from] %>
  <%= label_tag 'To' %>
  <%= text_field_tag :date_to, params[:date_to] %>
  <%= label_tag 'Rooms' %>
  <%= text_field_tag :rooms, params[:rooms] %>
  <%= submit_tag :search %>
<% end %>

hotel.rbで

class Hotel < ActiveRecord::Base
include Tire::Model::Search
include Tire::Model::Callbacks

belongs_to :city
belongs_to :area
has_one :area, :through => :city
has_many :rooms, :dependent => :delete_all


def search(params)

        tire.search do
            query do
                boolean do  
                    must { string params[:query] } if params[:query].present?
                    must { term rooms_available params, true}
                end
            end 
        end

end

self.include_root_in_json = false
def to_indexed_json
    to_json(methods: [:area_name,:city_name])
end

def area_name
    city.area.name
end
def city_name
    city.name
end


def rooms_available params
    exit
    begin_date = params[:date_from].to_date
    end_date = params[:date_to].to_date
    number_of_rooms = params[:rooms]

    rooms.each do |room|
        if room.available(begin_date, end_date, number_of_rooms)
            return true
        end
    end
    return false
end

end
4

1 に答える 1

4

これを to_json メソッドに入れます:

def to_json
  {
    :area_name => self.area_name, 
    :city_name => self.city_name,
    :rooms_available => self.rooms_available
   }.to_json
end

それで:

def search(params)

    tire.search do
        query do
            boolean do  
                must { string params[:query] } if params[:query].present?
                must { term rooms_available, true}
            end
        end 
    end

end

ただし、この場合は、rooms_available をフィルターに入れることをお勧めします。これは必須であり、その句でのスコアリングは気にしないためです。

def search(params)

    tire.search do
        query do
            boolean do  
                must { string params[:query] } if params[:query].present?
            end
        end 
        filter do
            boolean do  
               must { term rooms_available, true}
            end
        end
    end

end

お役に立てれば :)

于 2012-06-22T22:36:39.230 に答える