当我进入文章的“编辑”页面时,我的浏览器出现此错误:
博主/app/views/articles/_form.html.erb
undefined method `tag_list' for #<Article:0x007ffb52130678>
提取的源代码(大约第 20 行):
18: <p>
19: <%= f.label :tag_list %><br />
20: <%= f.text_field :tag_list %>
21: </p>
我的文章模型:
class Article < ActiveRecord::Base
attr_accessible :title, :body, :tag_list, :image
has_many :comments
has_many :taggings
has_many :tags, through: :taggings
has_attached_file :image
def tag_list=(tags_string)
tag_names = tags_string.split(",").collect{ |s| s.strip.downcase }.uniq
new_or_found_tags = tag_names.collect { |name| Tag.find_or_create_by_name(name) }
self.tags = new_or_found_tags
end
end
我有一个有很多标签的文章模型。这种关系通过另一个称为标记的模型来表示。同样,我在我的文章模型/控制器的编辑页面上收到此错误。我的博客应用程序说我的 :tag_list 方法没有方法错误,但它存在于我的文章模型中。我显然错过了一些东西,需要帮助填补这个空白。