NoMethodError in Prototypes#indexというエラーが出ました
場所*app/views/prototypes/index.html.erb where line #6 raised:*です
ログアウトボタンを押し*application.html.erb*の表示ページに行きたい
application.html.erb
html.erb
1コード 2<!DOCTYPE html> 3<html> 4 <head> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>ProtoSpace</title> 7 <%= csrf_meta_tags %> 8 <%= csp_meta_tag %> 9 <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> 10 <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %> 11 <link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap" rel="stylesheet"> 12 </head> 13 14 <body> 15 <header class="header"> 16 <div class="inner"> 17 <div class="nav"> 18 <div class="nav__left"> 19 <%= link_to image_tag("logo.png", class: :logo), root_path %> 20 </div> 21 <%# ログインしているときは以下を表示するようにしましょう %> 22 <% if user_signed_in? %> 23 <div class="nav__right"> 24 <%= link_to "ログアウト", destroy_user_session_path, method: :delete, class: :nav__logout %> 25 <%#= link_to "New Proto", root_path, class: :nav__btn %> 26 </div> 27 <%# // ログインしているときは上記を表示するようにしましょう %> 28 <%# ログインしていないときは以下を表示するようにしましょう %> 29 <% else %> 30 <div class="nav__right"> 31 <%= link_to "ログイン", new_user_session_path, class: :nav__btn %> 32 <%= link_to "新規登録", new_user_registration_path, class: :nav__btn %> 33 </div> 34 <% end %> 35 <%# // ログインしていないときは上記を表示するようにしましょう %> 36 </div> 37 </div> 38 </header> 39 <%= yield %> 40 <footer class="footer"> 41 <p class="copyright">Copyright © PROTO SPACE All rights reserved.</p> 42 </footer> 43 </body> 44</html>
routes.rb
ruby
1Rails.application.routes.draw do 2 devise_for :users 3 root to: "prototypes#index" 4 resources :users, only: [:edit, :update,] 5 resources :prototypes, only: [:new, :create] 6 resources :prototypes, only: [:new, :create, :destroy] 7 8 devise_scope :user do 9 get '/users/sign_out' => 'devise/sessions#destroy' 10 end 11 12end
users_controller.rb
class UsersController < ApplicationController before_action :move_to_index, except: [:index, :show] def index end def new @user = User.new end def edit end def move_to_index unless user_signed_in? redirect_to action: :index end end end
あなたの回答
tips
プレビュー