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>
エラーを認識しないのはなぜですか?この場合のエラーを処理するにはどうすればよいですか?