您可以在您的控制器中有一个可以在链接上调用的操作,
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