Rails acts-as-taggable-on with select2 (and simple_form)

放肆的年华 提交于 2019-11-30 05:09:06

问题


I would like to have a select2 dropdown of tags, where i could select multiple existing tags and add new ones.

I have tried many different ways and i either don't get select2 box working or only one value is passed (last one).

This is closest i got (passes last value):

<%= f.input :tag_list, collection: @model.tags.map { |t| t.name }, input_html: { :style=> 'width: 300px', class: "taggable", data: { placeholder: "Tags" }} %>

回答1:


As I mentioned before, normal select2 library now uses only select input types, but it does work with input types when using select2-full library.

So, this was a way out of one problem.

Still I had problems with only passing one single value. I was actually copy/pasting code from one of the examples and it was wrong. It was stated that strong parameters should include :tag_list, which is obvious, but it is actually {tag_list[]} that was needed in order to accept all the values.

Works like a charm now.




回答2:


For me work this:

Coffee script:

  $( ".tags" ).select2
    theme: "bootstrap",
    tags: true
    tokenSeparators: [',']

and in the view:

= f.input :tag_list, input_html: { class: 'tags', multiple: "multiple" }, collection: @video.tag_list

Important part is multiple: "multiple"

And of course, how Mitja said, don't forget to put { tag_list: [] } to your controller strong parameters.

And as example, if you want to have your tags as suggestions in the dropdown, you could do this:

= f.input :tag_list, input_html: { class: 'tags', multiple: "multiple" }, collection: ActsAsTaggableOn::Tag.most_used(30), value_method: :name



回答3:


Try this one, hope this will work for you.

= f.input :tag_list, class: "taggable",data: {options: @model.tags.map { |t| t.name }} 

$(".taggable").select2(
  tags: $('.taggable').data('options')
  width: "252px"
);


来源:https://stackoverflow.com/questions/32651759/rails-acts-as-taggable-on-with-select2-and-simple-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!