###前提・実現したいこと
WEBサービスのユーザー登録ページにアクセスすると発生する下記のエラーを解消したい。
viewやcontrollerのファイルを確認しても問題箇所が特定できず困っています。
Rails 4.2.2
Ruby 2.0.0
で開発をしています。
###発生している問題・エラーメッセージ
ユーザーの新規登録ページにアクセスすると「undefined local variable or method」が発生し
chromeブラウザでは下記のエラーが表示されます。
以下がchromeで表示されているエラーです。
undefined local variable or method `object' for #<#<Class:0x007fca9c2187c0>:0x007fca9dafdba0>
同じくchromeで表示されるエラー箇所です。
app/views/shared/_error_messages.html.erb:1:in `_app_views_shared__error_messages_html_erb___4354769760733946946_70254143801240' app/views/users/new.html.erb:8:in `block in _app_views_users_new_html_erb___3118286864806176088_70254102854900' app/views/users/new.html.erb:6:in `_app_views_users_new_html_erb___3118286864806176088_70254102854900'
###該当のソースコード
まず、ユーザー登録機能に関係するusers_controller.rbファイルのユーザー作成箇所です。
ruby
1 def create 2 @user = User.new(user_params) 3 if @user.save 4 @user.send_activation_email 5 flash[:info] = "Please check your email to activate your account." 6 redirect_to root_url 7 else 8 render 'new' 9 end 10 end
次に、chromeで指摘されているapp/views/shared/_error_messages.html.erbファイルです。
ruby
1<% if object.errors.any? %> 2 <div id="error_explanation"> 3 <div class="alert alert-danger"> 4 The form contains <%= pluralize(object.errors.count, "error") %>. 5 </div> 6 <ul> 7 <% object.errors.full_messages.each do |msg| %> 8 <li><%= msg %></li> 9 <% end %> 10 </ul> 11 </div> 12<% end %>
同じくchromeで指摘されているnew.html.erbファイルです。
ruby
1<% provide(:title, 'Sign up') %> 2<h1>Sign up</h1> 3 4<div class="row"> 5 <div class="col-md-6 col-md-offset-3"> 6 <%= form_for(@user) do |f| %> 7 <%= render 'shared/error_messages', object: f.object %> 8 <%= render 'shared/error_messages' %> 9 10 <%= f.label :name %> 11 <%= f.text_field :name, class: 'form-control' %> 12 13 <%= f.label :email %> 14 <%= f.email_field :email, class: 'form-control' %> 15 16 <%= f.label :password %> 17 <%= f.password_field :password, class: 'form-control' %> 18 19 <%= f.label :password_confirmation, "Confirmation" %> 20 <%= f.password_field :password_confirmation, class: 'form-control' %> 21 22 <%= f.submit "Create my account", class: "btn btn-primary btn-form" %> 23 <% end %> 24 </div> 25</div> 26
###試したこと
参考にしたサイト
上記のサイトを参考に、new.html.erbファイルの
<%= render 'shared/error_messages' %>
をコメントアウトしたりしたのですが、エラー内容も変わらずで効果なしでした、、
###追記
エラー箇所の参考としてchromeでエラー画面出力された内容を記載しておきます。
(HTMLかJavascriptの出力結果があれば回答しやすいのでは、とのコメントをいただいたのですが、HTMLなどの出力結果をどうやって得るか分からず、choromeでの出力を記載させていただきます)
まずapp/views/shared/_error_messages.html.erb:1のエラー該当箇所が下記です。
<% if object.errors.any? %> <div id="error_explanation"> <div class="alert alert-danger"> The form contains <%= pluralize(object.errors.count, "error") %>. </div> <ul>
次に、app/views/users/new.html.erb:8の該当箇所が下記です。
instrument("!render_template") do compile!(view) view.send(method_name, locals, buffer, &block) end rescue => e handle_render_error(view, e)
最後に、app/views/users/new.html.erb:6の該当箇所が下記です。
instrument("!render_template") do compile!(view) view.send(method_name, locals, buffer, &block) end rescue => e handle_render_error(view, e)
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー