Acts_as_Version有没有办法在保存时跳过版本控制?

时间:2011-01-30 19:21:36

标签: ruby-on-rails acts-as-versioned

使用rails acts_as_versioned,有没有办法跳过版本控制事件,只是允许定期保存?

2 个答案:

答案 0 :(得分:1)

如果我没记错的话

record.save_without_revision

应该做的伎俩

答案 1 :(得分:1)

看起来你可以做以下任何一种:

@post = Post.find(params[:id])
# assign some stuff to your post
@post.save_without_revision

@post = Post.find(params[:id])
@post.without_revision do
  @post.update_attributes(params[:post])
end