我有以下操作来确认 PIN 码。
def create
@confirm = User.where(:email => params[:user][:email]).last
errors[:base] << "Subscription not found" if @confirm.nil?
respond_with(@confirm)
end
如果对象不存在,我会收到以下错误
NameError in ConfirmsController#create
undefined local variable or method `errors' for #<ConfirmsController:0x007f921de173d0>
为什么它不能识别错误,我该如何处理这种情况下的错误?