如何在Rails中使用jquery tokeninput?

编程入门 行业动态 更新时间:2024-10-28 05:19:34
本文介绍了如何在Rails中使用jquery tokeninput?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试在我的应用中的表单中添加一个tokeninput jquery字段,允许用户发布状态更新。我希望用户能够将作品(单独的模型)附加到状态更新。我正在使用act_as_taggable_on gem,我的查询指定标签上下文工作。但是,该字段不会加载任何搜索结果。

I'm trying to add a tokeninput jquery field in a form in my app that allows users to post status updates. I want users to be able to attach works (a separate model) to the status update. I'm using the act_as_taggable_on gem and my query specifies the tags context "works". However, the field will not load any search results.

我实际上有第二个tokeninput字段,允许用户将标记附加到状态更新,就像这个网站使用标签一样附加到此发行票。它工作正常!我正在尝试镜像该功能以指定搜索工作模型的上下文,我正在努力实现。

I actually have a second tokeninput field that allows users to attach tags to the status update, much like this website uses tags to attach to this issue ticket. It works fine! I'm trying to mirror that functionality to specify the context to search the works model and I'm struggling with the implementation.

任何想法?非常感谢您的时间和帮助!以下是相关代码:

Any ideas? Your time and assistance would be greatly appreciated! Here is the relevant code:

发布模型

attr_accessible :content, :tag_list, :work_list acts_as_taggable_on :tags acts_as_taggable_on :works

帖子控制器(更新)

def work_list query = params[:q] @work_list = ActsAsTaggableOn::Tag.includes(:taggings).where("taggings.context = 'works'").where("tags.name ILIKE ?", "%#{params[:q].downcase.to_s}%").all @work_list = @work_list.select { |v| v.name =~ /#{query}/i } respond_to do |format| format.json { render :json => @work_list.map{|w| {:id => w.name, :name => w.name }}} end end def tags query = params[:q] if query[-1,1] == " " query = query.gsub(" ", "") ActsAsTaggableOn::Tag.find_or_create_by_name(query) end #Do the search in memory for better performance @tags = ActsAsTaggableOn::Tag.all @tags = @tags.select { |v| v.name =~ /#{query}/i } respond_to do |format| format.json{ render :json => @tags.map{|t| {:id => t.name, :name => t.name }}} end end

表格

<%= f.text_field :tag_list, :id => "post_work_list", "data-pre" => @post.work_list.map(&:attributes).to_json %>

javascript

javascript

$ -> $("#post_tags").tokenInput "/posts/tags.json", prePopulate: $("#post_tags").data("pre") preventDuplicates: true noResultsText: "No results, press space key to create a new tag." animateDropdown: false $ -> $("#post_work_list").tokenInput "/posts/work_list.json", prePopulate: $("#post_work_list").data("pre") preventDuplicates: true noResultsText: "No results" animateDropdown: false

路线

get "posts/tags" => "posts#tags", :as => :tags get "posts/work_list" => "posts#work_list", :as => :work_list

谢谢!

编辑:我清理了这个问题并更新了所有代码。我还开始在enginhere上进行对话,其中还有其他工程师的其他疑难解答:

I cleaned up this question and the updated all of the code. I also started a conversation on enginhere which also has some other troubleshooting from other engineers:

bit.ly/179kiqH

通过继续上述enginhere对话的对话,随时提供帮助在这里发布最终的,正式答案为赏金!

Feel free to help by continuing the conversation on the above enginhere conversation and then posting the final, official answer here for the bounty!

再次感谢!

推荐答案

本主题对任何问题的精彩帖子回答!

Amazing post answers to any questions by this topic!

bloginius/blog/2013/12/31/how -integrate-acts-as-taggable-on-with-jquery-token-input-with-rails-3 /

更多推荐

如何在Rails中使用jquery tokeninput?

本文发布于:2023-10-29 02:44:43,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1538497.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何在   Rails   tokeninput   jquery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!