我有三個型號desination,僱工,branch.my asssociations如下使用選擇框用於顯示特定行軌
class Employe < ActiveRecord::Base
belongs_to :designation
has_one :branch
end
class Designation < ActiveRecord::Base
end
class Branch < ActiveRecord::Base
belongs_to :employe
end
我已經聲明瞭一個選擇框在我的僱工形式來選擇指定的名稱model.now我想在分支選擇框,以顯示與指定聘用過的員工爲經理。我的分支形態
<div class="field">
<%= f.label :branch_address %><br>
<%= f.text_field :branch_address ,class: "form-control"
,placeholder: "Enter Branch Address"%>
</div>
<div class="field">
<%= f.label :employe_id %><br>
<%= f.select :employe_id,Employe.all.map{|e| [e.e_name,e.id]} %>
</div><br>
這裏我得到我的選擇box.bt所有聘用過的員工的名單我只想與指定爲經理聘用過的員工在選擇框中添加什麼?plz幫助新的以軌道
什麼是'designation'表的列? – ashvin
標題是指定 – aaquib