2
的JavaScript我有了像下面一個簡單的映射關係的Rails項目:jQuery的tokeninput在Rails3中
模型類
has_many :stories
模型故事
belongs_to category
在我的故事控制器
我有
def new
@story = Story.new
@categories = Category.all
end
然後在我的new.html.erb我有
<%= form_for @story do |f| %>
<%= f.text_field, :title %>
<%= collection_select(:story, :category_id, @categories, :id, :name)%>
<% end %>
我想<%= f.text_field%>
(文本字段),以取代<%= collection_select %>
(選擇框)和使用jquery toxeninput JavaScript的插件填充數據,我不知道如何去對這個。
表單如何查找TokenInput部分? – LearningRoR
窗體將是一個普通的'form_for @ story',並將category字段定義爲'f.text_field:category_id,:id =>'whatever'' – rubish
好的,謝謝。也許你可以回答我的賞金,因爲它與你所做的非常相似。 http://stackoverflow.com/questions/6674127/how-to-use-jquery-tokeninput-and-acts-as-taggable-on-together – LearningRoR