我使用 jquery-tokeninput,但是它的一个分支允许为每个User
添加新的自定义令牌(Tag
)Resource
。
此处的示例(向下滚动到标签框并输入几个字母。您可以输入不存在的字母):http ://www.tomsguide.fr/solutions/nouveau_sujet.htm
我正在使用的 fork 的当前返回值是这样的(引号中的新值):
16,42,'Subway',37,'McDonald\'s',734
我很难在 Rails 中处理这个问题。这完美地总结了它。
这是我到目前为止所拥有的,它不起作用,可能有很多我没有看到的原因,但主要原因是我需要创建新的 Tag 实例但不保存它们,这样我就可以以某种方式传递它们返回令牌输入,并在提交表单时将新标签与新资源一起保存。但是,当您使用 Tag.new 时,它不会创建 ID。
资源.rb
attr_accessor :tokens_list
# CUSTOM TOKENS
def tag_tokens=(tokens)
self.tokens_list = tokens.split(",")
if new_custom_tokens?
self.tokens_list.each do |token|
tokens_list << token if token.include? "'"
end
end
self.tag_ids = self.tokens_list
end
def new_custom_tokens?
self.tokens_list.each do |token|
return true if token.include? "'"
end
false
end
资源控制器.rb
def create
@title = "Submit Resource"
@resource = Resource.new(params[:resource])
assign_to_global_user?
# CUSTOM TOKENS
if @resource.new_custom_tokens?
custom_token_time_restriction
# Create Tag.new
end
if @resource.valid?
@resource.save
flash[:notice] = "Your link has been successfully submitted."
redirect_to root_url
else
render :action => :new
end
end
def assign_to_global_user?
if user_signed_in?
@resource.user_id = current_user.id
else
@resource.user_id = User.find_by_username("Global_User").id
end
end
private
# CUSTOM TOKENS
def custom_token_time_restriction
limit = 7 # days
if (@resource.user_id != User.global_user_id) and (Time.now - limit.days > User.find(@resource.user_id).created_at)
# TODO: Check if they are anonymous or their account is newer than 7 days
else
flash[:notice] = "You be Logged in to add new tags, and your account must be older than #{limit} days."
render :action => :new
end
end
new.html.erb(用于资源#new)
<div class="field">
<%= f.label :tags %>
<%= f.text_field :tag_tokens, "data-pre" => @resource.tags.to_json(:only => [:id, :name]), :class => :tagbox %>
</div>