我attr_accessor :politics, :tech, :entertainment, :sports, :science, :crime, :business, :social, :nature, :other
的 post.rb 中有(这些是标签),我希望它们是虚拟的。
然后在 new.html.erb 我有
<%= f.check_box :politics %>
<%= f.label :politics %>
<%= f.check_box :tech %>
<%= f.label :tech, 'Technology' %>
<%= f.check_box :entertainment %>
<%= f.label :entertainment %>
<%= f.check_box :sports %>
<%= f.label :sports %>
<%= f.check_box :science %>
<%= f.label :science %>
<%= f.check_box :crime %>
<%= f.label :crime %>
<%= f.check_box :business %>
<%= f.label :business %>
<%= f.check_box :social %>
<%= f.label :social %>
<%= f.check_box :nature %>
<%= f.label :nature %>
<%= f.check_box :other %>
<%= f.label :other %>
这样每个都设置为真或假,然后,最后,在def create
我有的post_controller.rb 下
@post.tag_list << 'politics' if :politics
@post.tag_list << 'tech' if :tech
@post.tag_list << 'entertainment' if :entertainment
@post.tag_list << 'sports' if :sports
@post.tag_list << 'science' if :science
@post.tag_list << 'crime' if :crime
@post.tag_list << 'business' if :business
@post.tag_list << 'social' if :social
@post.tag_list << 'nature' if :nature
@post.tag_list << 'other' if :other
但是,当我在控制台中执行post.tag_list时,我会得到所有标签的响应#=>'politics, tech, ... nature, other'
如果我不检查,为什么不是 :business = false ?