我想使用Jquery使用Cocoon gem在fields_for中设置字段的值。 我在jquery上使用change事件。
_form
<%= form_for(@invoice) do |f| %>
<div class="field">
<%= f.label :total_order %><br>
<%= f.number_field :total_order %>
<%= f.object_id %>
</div>
<div id="items">
<%= f.fields_for :items do |i| %>
<%= render 'item_fields', :f => i %>
<% end %>
<div class="links">
<%= link_to_add_association '+ produk', f, :items %>
</div>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
_item_fields
<div class="nested-fields">
<tr>
<td><%= f.select :product_id,
Product.all.collect {|p| [p.name, p.id,
{'data-unit_cost'=>p.unit_cost}]},
{ include_blank: true },
{ class: "product-select"} %>
</td>
<td><%= f.number_field :unit_cost,
label: false,
class: "cost-input" %>
</td>
<td><%= f.number_field :quantity,
label: false,
class: "qty-input" %>
</td>
<td style="vertical-align: top;"><%= link_to_remove_association '- remove', f %></td>
</tr>
</div>
咖啡脚本
$("#items").on "cocoon:after-insert", ->
$(".product-select").change ->
$(".cost-input").val($(".product-select :selected").data("unit_cost"))
问题是,它仅适用于第一个嵌套记录。 这可能与fields_for生成的动态ID有关,但我不知道如何处理它。
任何帮助都将不胜感激。
已对脚本进行了更改,这是我的问题的答案。
$("#items").on "change", ".product-select", ->
product_select = $(this)
product_select.parent().find('.cost-input').val(product_select.find(':selected').data('unit_cost'))
感谢nathanvda帮助我。
答案 0 :(得分:1)
您使用元素ID。它在HTML页面中被认为是唯一的。你应该使用类。
[更新]好的。您使用全局选择器,因此您可以更改具有该类的所有元素。
我想,你真正想要的是改变刚刚插入的元素。 如文档中所示,这是可能的。只需写下
$("#items").on "cocoon:after-insert", (e, added_item) ->
added_item.find(".product-select").change ->
$(this).parent().find(".cost-input").val($(this).selected.data("unit_cost"))
此代码未经过测试,但我的工作是:附加change
事件。在更改事件中,使用$(this)
,它指向触发事件的容器,并将其用作查找所需项目的相对点。
请注意,如果您只使用jquery,这样更容易解决。
$('#items").on "change", ".product-select", ->
product_select = $(this)
product_select.parent().find('.cost_input').val(product_select.selected().data("unit_cost"))
这将捕获在change
元素上发生的#items
内的所有.product-select
个事件。这是动态的,因此它也适用于新添加的项目。您可能需要稍微调整jquery,以找到所选值。正如我所说:未经测试的代码,但我希望你得到漂移。