我正在使用 R.B. railcast - #197 Nested Model Form Part 2 的设置向表单动态添加字段,但我在使 Tokeninput fields 工作时遇到问题。

形式:

<%= form_for(current_user, :url => user_products_path) do |f| %>
  <%= f.error_messages %>
    <%= f.fields_for :user_products do |builder| %>
        <%= render "user_product_fields", :f => builder %>
    <% end %>
    <%= link_to_add_fields "Add a UserProduct", f, :user_products %>
    <%= f.submit "Create" %>
<% end %>

这是我的 user_product_fields 部分, token text_fields 是我遇到的问题:
<div class="fields">
        <%= f.label :product_token, "Product" %>
        <%= f.text_field :product_token, :id => 'product_token' %>
        <%= f.label :address_token, "Address" %>
        <%= f.text_field :address_token, :id => 'address_token' %>
        <%= f.label :price %>
        <%= f.text_field :price %>
        <%= link_to_remove_fields "remove", f %>
</div>

我的 application.js 中的 Jquery Tokeninput 函数:
$(function() {
  $("#product_token").tokenInput("/products.json", {
    prePopulate: $("#product_token").data("pre"),
    tokenLimit: 1
  });
});

$(function() {
  $("#address_token").tokenInput("/business_addresses.json", {
    prePopulate: $("#address_token").data("pre"),
    tokenLimit: 1
  });
});

嵌套表单在函数中的作用是:
function add_fields(link, association, content) {
    var new_id = new Date().getTime();
    var regexp = new RegExp("new_" + association, "g")
    $(link).parent().before(content.replace(regexp, new_id));
}

function remove_fields(link) {
    $(link).prev("input[type=hidden]").val("1");
    $(link).closest(".fields").hide();
}

这条线在这里:
var new_id = new Date().getTime();

使 token 输入字段动态化,这是我从 HTML 中提取的内容,注意字段中不断变化的长数字。这是因为上面的行。
<label for="user_user_products_attributes_1313593151076_product_token">Product</label>
<label for="user_user_products_attributes_1313593146876_product_token">Product</label>
<label for="user_user_products_attributes_1313593146180_product_token">Product</label>

当字段不断变化时,如何让我的 token 字段工作?

谢谢你。

编辑:新的工作代码。
 function add_fields(link, association, content) {
    var new_id = new Date().getTime();
    var regexp = new RegExp("new_" + association, "g")
    $(content.replace(regexp, new_id)).insertBefore($(link).parent()).trigger("nestedForm:added");
}

$('div.fields').live("nestedForm:added", function() {
  $("#product_token", $(this)).tokenInput("/products.json", {
    prePopulate: $("#product_token", $(this)).data("pre"),
    tokenLimit: 1
  });
});

尝试使用 TokenInput data-pre 时:
def new
  @user_product = current_user.user_products.build

  # This line below is for TokenInput to work, This allowed me to use @products.map on the form.
  @products = []
end

def edit
  @user_product = UserProduct.find(params[:id])

  # This line below had to find the Product associated with the UserProduct
  @products = [@user_product.product]
end

最佳答案

您可以使用 jQuery 的 insertBefore 而不是 before ,因为这将返回插入的元素。它将帮助您触发某些事件。您可以在此事件上拥有一个监听器,您可以在其中拥有 token 输入代码。您还应该使用 class 而不是 id,因为许多元素可以具有相同的 class,但没有两个元素应该具有相同的 id。

$(content.replace(regexp, new_id)).insertBefore($(link).parent()).trigger("nestedForm:added");

$('div.fields').live("nestedForm:added", function() {
  $(".product_token", $(this)).tokenInput("/products.json", {
    prePopulate: $(".product_token", $(this)).data("pre"),
    tokenLimit: 1
  });
});

这只是一个想法,代码未经测试。

关于javascript - Jquery Tokeninput & 动态嵌套表单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7095616/

10-12 17:11