如果要复制
一个activeRecord对象,可以使用其
属性来创建新的对象
您可以在您的控制器中有一个可以在链接上调用的操作,
def create_from_existing
@existing_post = Post.find(params[:id])
#create new object with attributes of existing record
@post = Post.new(@existing_post.attributes)
render "your_post_form"
end