0
你好,我叫下面this tutorial但預填充字段在編輯我的模型..Jquery的tokenInput不預先填充
注意text_field category_tokens沒有預先填充編輯時,一類是不工作。
以下是代碼片段,text_field的HTML輸出顯示值。
<input id="product_category_tokens" type="text" size="30" name="product[category_tokens]" data-pre="[{"created_at":"2010-09-13T03:33:17Z","description":"","id":x,"name":"Kitchen & Dining ","parent_id":xx,"permalink":"kitchen-dining","updated_at":"2011-01-05T11:17:10Z"}]" style="display: none;">
application.js
$(function() {
$("#product_category_tokens").tokenInput("/categories.json", {
crossDomain: false,
prePopulate: $('#product_category_tokens').data('pre'),
preventDuplicates: true
});
});
<%= f.text_field :category_tokens, "data-pre" => @product.categories.map(&:attributes).to_json %>
你的開發日誌是什麼樣的?來自categories.json的任何錯誤? – 2011-06-16 21:01:25
categories.json顯示正確的json格式。實際上,該插件用於創建新類別。這只是在編輯產品時不預先填充當前類別。 – anshu 2011-06-17 17:34:58
它應該從該json網址預先填充。你確定你遵循了指南嗎? – 2011-06-17 17:40:28