のための未定義のメソッド `ヘルパー」私は工夫とシンプルなレール5のアプリケーションを持っていると私はサインアップしようとするたびに、私は次のエラーを取得する:Railsの5:NoMethodError:MyMailer
NoMethodError in Devise::RegistrationsController#create undefined method `helper' for MyMailer(Table doesn't exist):Class
エラーが2行目に発生しました:
class MyMailer < ApplicationRecord
helper :application # gives access to all helpers defined within `application_helper`.
include Devise::Controllers::UrlHelpers # Optional. eg. `confirmation_url`
default template_path: 'devise/mailer' # to make sure that your mailer uses the devise views
end
このクラスがアプリケーションヘルパーを見つけることができない理由はありますか?
なぜ「include ApplicationHelper」を実行しないのですか? – dp7