我是铁杆新手。我正在尝试使用自动完成实现act-as-taggable-on。我面临的问题是,如果我有一个用户的多个标签,自动完成建议整个tag_list而不是单个标签。
这是我前面提到的ActiveRecord::Relation issue的后续问题&在Taryn East的帮助下解决了。
我想通过autosuggest建议我只使用Gray&绿色标签代替灰色,白色。我认为它建议我Gray,White因为我之前为其他东西创建了这些标签,所以它采用整个数组而不是数组中的单个记录。
我如何克服这个问题&要求它建议我只有一个标签&没有多个标签?
这就是我得到的。
_form.html.erb
<%= form_for(@user) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :tags %>
<%= f.autocomplete_field :tag_list, autocomplete_tag_name_users_path, :"data-delimiter" => ', ' %>
<% end %>
index.html.erb
<% @users.each do |user| %>
<h3><%= user.name %></h3>
<h4><i><%= user.tag_list %></i> | <%= time_ago_in_words(user.created_at) %> ago</h4>
<h4><%= link_to 'Show', user %> | <%= link_to 'Edit', edit_user_path(user) %> | <%= link_to 'Delete', user, confirm: 'Are you sure?', method: :delete %></h4>
<% end %>
<h1>Listing All Tags [<%= @smart.map(&:name).length %>]</h1>
<ul>
<% @smart.each do |tag| %>
<li> <%= tag.name %></li>
<% end %>
new.html.erb是
<h1>New user</h1>
<%= render 'form' %>
<%= link_to 'Back', users_path %>
user.rb
class User < ActiveRecord::Base
serialize :tags
acts_as_taggable_on :tags
scope :by_join_date, order("created_at DESC")
end
users_controller.rb
class UsersController < ApplicationController
autocomplete :tag, :name, :class_name => 'ActsAsTaggableOn::Tag'
def index
@users = User.all
@smart = User.tag_counts_on(:tags)
end
def new
@user = User.new
end
end
我如何克服这个问题&amp;要求它建议我只有一个标签&amp;没有多个标签?非常感谢。