0

这是我的方法:

def rename
  old_tag = params[:old_tag]
  new_tag = params[:new_tag]

  if old_tag != new_tag
    # find any articles that use the old tag
    Article.tagged_with(old_tag).each do |article|
      # give articles with the old tag the new tag
      article.tag_list.add(new_tag)
      # remove the old tag
      article.tag_list.remove(old_tag)
      article.save
    end
  end

  render :json => "#{old_tag} renamed to #{new_tag}"
end

我遇到的问题是.save在文章中添加了一个新标签,但没有删除旧标签。

4

1 回答 1

0

我面临的问题是更新标签将启动所有相关模型的验证,在我的情况下,验证失败是因为我的开发机器上没有可用的图像并且附件验证失败。

要忽略验证,我会这样做:

article.save(:validate => false)
于 2013-01-30T12:51:05.743 回答