我使用通過使用jQuery的JavaScript動態添加和刪除嵌套的模型字段。將變量值形式的js函數傳遞給rails視圖(動態選擇)
有4種型號:client,c_person;項目,p_person。和一對多的關聯:客戶有很多c_people,項目有很多p_people(這些是來自客戶端的人,但他們屬於項目)。
所以,我有以下問題:
當我使用在我看來helper方法「link_to_add_fields」,我需要通過另一個參數(current_client_id)那要看什麼客戶在選擇框中當前選定。
<!-- new.html.erb -->
<p>
<%= f.label :client_id %></br>
<%= f.collection_select :client_id, Client.order("title"), :id, :title %>
</p>
<p>
<%= f.fields_for :p_people do |builder| %>
<%= render "p_person_fields", :f => builder %>
<% end %>
</p>
<p><%= link_to_add_fields "Add Person", f, :p_people, current_client_id %></p>
我需要動態改變的集合中的輔助方法@people變量,
# application_helper.rb
def link_to_add_fields(name, f, association, current_client_id)
new_object = f.object.class.reflect_on_association(association).klass.new
@people = CPerson.where(:client_id => current_client_id).order(:name) unless current_client_id.blank?
fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
render(association.to_s.singularize + "_fields", :f => builder)
end
link_to_function(name, h("add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\")"))
end
,終於用它在部分:
<!-- _p_person_fields.html.erb -->
<div class="fields">
<p>
<%= f.collection_select :content, @people, :name, :name %>
<%= f.hidden_field :_destroy %>
<%= link_to_function "Remove", "remove_fields(this)" %>
</p>
</div>
下面是簡單的JS功能獲取current_client_id值,但我不知道如何將它傳遞給我的視圖或幫助器方法。
// application.js
function current_client_id() {
var current_client_id = $("select#client_id :selected").val();
}
我感謝您的幫助!也許有更好的解決方案?