rails 初心者です。
エラーが解決できません・・・
よろしくお願い致します
コントローラー
class ImagesController < ApplicationController
layout "logged_in"
before_action :redirect_to_login_unless_logged_in
def index
@title = "投稿一覧"
@user = current_user
@image = Image.where(user_id: current_user.id)
end
end
ビュー |
---|
<p><%= @user %>さん、こんにちは!</p> |
ルーティング
Rails.application.routes.draw do
root "images#index"
get "/images/index", to: "images#index", as: :index
get "/images/new", to: "images#create", as: :new_image
end
アプリケーションコントローラ
class ApplicationController < ActionController::Base
private
def redirect_to_login_unless_logged_in
redirect_to static_path if current_user.nil?
end
def current_user
User.find(session[:user_id]) if session[:user_id]
end
end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/27 09:30
2021/05/27 09:33
2021/05/27 22:40