好的,你可以在下面看到我的模型和控制器。我想要做的是,当用户添加新租约时,用户可以从数据库中已有的属性列表中选择 property_id,还可以从文件中的租户列表中选择 tenant_id . 我对 Rails 比较陌生,真的不知道我将如何去做。在我的控制器中,我放置了 @property = Property.all @tenant = Tenant.all 以使它们可以访问,但我不知道如何以我想要的方式利用它们。
租赁模式
class Lease < ActiveRecord::Base
attr_accessible :lease_end, :lease_start, :property_id, :tenant_id
belongs_to :tenant
belongs_to :property
end
属性模型
class Property < ActiveRecord::Base
attr_accessible :address_line_1, :city, :county, :image, :rent
belongs_to :lease
end
租户模型
class Tenant < ActiveRecord::Base
attr_accessible :email, :name, :phone
belongs_to :lease
end
用于添加新租约和编辑租约的租赁控制器方法
def new
@lease = Lease.new
@property = Property.all
@tenant = Tenant.all
respond_to do |format|
format.html # new.html.erb
format.json { render json: @lease }
end
end
# GET /leases/1/edit
def edit
@lease = Lease.find(params[:id])
@property = Property.all
@tenant = Tenant.all
end
编辑:下拉框工作,但选项不是我想要的。我得到了像 # 代表租户和 # 代表属性这样的选项。我想如果我能得到租户的姓名和物业的地址
_form 文件代码已根据teresko的建议进行了更新
<%= form_for(@lease) do |f| %>
<% if @lease.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@lease.errors.count, "error") %> prohibited this lease from
being saved:</h2>
<ul>
<% @lease.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :tenant_id %><br />
<%= f.select :tenant, options_for_select(@tenants) %>
</div>
<div class="field">
<%= f.label :property_id %><br />
<%= f.select :property, options_for_select(@properties) %>
</div>
<div class="field">
<%= f.label :lease_start %><br />
<%= f.date_select :lease_start %>
</div>
<div class="field">
<%= f.label :lease_end %><br />
<%= f.date_select :lease_end %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>