Rails3 中的 jquery tokeninput javascript
我有一个 Rails 项目,它有一个简单的映射关系,如下所示:
模型类别
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 %>
想替换 <%= collection_select %>;
(选择框)与 <%= f.text_field%>
(文本字段)并使用 jquery toxeninput javascript 插件填充数据,我不知道如何进行此操作。
i have a rails project that has a simple mapped relation like below:
model categories
has_many :stories
model Story
belongs_to category
in my stories controller i have
def new
@story = Story.new
@categories = Category.all
end
then in my new.html.erb i have
<%= form_for @story do |f| %>
<%= f.text_field, :title %>
<%= collection_select(:story, :category_id, @categories, :id, :name)%>
<% end %>
i want to replace the <%= collection_select %>
(select box) with <%= f.text_field%>
(text field) and populate the data using jquery toxeninput javascript plugin and i dont know how to go about this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最近将 jquery tokeninput 添加到我的一个项目中,并尝试给出一个粗略的分步过程来完成它:
定义一个方法
search_category
在你的控制器中如下所示:初始化 jquery tokeninput,如下所示:
希望有帮助!
I recently added jquery tokeninput to one of my projects and would try to give a rough step-by-step procedure to get it done:
Define a method
search_category
in your controller like following:init the jquery tokeninput like following:
Hope it helps!