我正在使用 Rails 应用程序,并已开始使用元搜索来处理搜索功能,但我在获取正确的搜索方法时遇到了麻烦。
例如,我有一个具有现场成本的模型(提案)。
..model/proposal.rb
class Proposal < ActiveRecord::Base
belongs_to :user
has_many :users, :through => :invitations
attr_accessible :cost, :user_id
此代码适用于元搜索
..views/homes/live_requests.html.erb
<%= form_for @search, :url => "/live_requests", :html => {:method => :get} do |
<%= f.label :cost_greater_than %>
<%= f.text_field :cost_greater_than %><br />
<!-- etc... -->
<%= f.submit %>
然而,对于更复杂的关联,我无法使元搜索路径正确。
我正在尝试搜索:
Proposal.last.user.suburb.name #Returns the name of the suburb as expected
我尝试了许多关联,但找不到合适的关联。
提案有一个映射到用户的 user_id 字段,所以 Proposal.user 返回一个用户用户然后有一个郊区 ID,它返回一个郊区郊区有一个名为 name 的字段,它返回一个字符串
我将如何将其用于元搜索表单?
<%= f.text_field :user_user_suburb_name %>
or
<%= f.text_field :user_id_suburb_id_name %>
我不能得出一个可靠的结论。
提前感谢您的帮助。