#前提・実現したいこと
チーム開発をしています。
今app/view/devise/registrations/new.html.hamに新規投稿画面を実装する為書き始めたところです。
なのでまだ書いていない部分が多いです。
#自分で調べたことや試したこと
スペルミスはないか確認。
他のファイルはどこも触っていないのでインデントなどは問題ないかと思います。
サーバーを再起動。
#発生している問題・エラーメッセージ
エラー文
NameError
1Showing /Users/7tk/projects/freemarket_sample_80b/app/views/devise/registrations/new.html.haml where line #9 raised: 2 3undefined local variable or method `f' for #<#<Class:0x00007fbbe708fa48>:0x00007fbbe708df18> 4Extracted source (around line #9):
エラー箇所⬇︎
.registration-form .field ▶️▶️ = f.label :nickname %em (6 characters maximum) %br/ = f.text_field :nickname, autofocus: true, maxlength: "6"
#該当のソースコード
app/view/devise/registrations/new.html.ham
.registration-main .registration-vontainer %h2.member-information 会員情報入力 = form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| = render "devise/shared/error_messages", resource: resource .registration-form .field = f.label :nickname %em (6 characters maximum) %br/ = f.text_field :nickname, autofocus: true, maxlength: "6" .field = f.label :email %br/ = f.email_field :email, autofocus: true, autocomplete: "email" .field = f.label :password - if @minimum_password_length %em (#{@minimum_password_length} characters minimum) %br/ = f.password_field :password, autocomplete: "new-password" .field = f.label :password_confirmation %br/ = f.password_field :password_confirmation, autocomplete: "new-password" .actions = f.submit "次へ進む"
わかる方がいらっしゃいましたらよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。