给出以下控制器。
class Posts_controller < ApplicationController
def create
@post = Post.new(:params[:post])
flash[:notice] = 'Post successfully saved' if @post.save
respond_with(@post, :location => my_custom_url)
end
end
如果未保存帖子,即因为它未通过一次或多次验证,则控制器会转到my_custom_url,而不是呈现“新”视图,当没有给出位置时,它将执行该操作。
有没有办法阻止这种行为被覆盖?