解決したいこと
carrierwaveを導入しましたが、画像を表示しようとすると以下のエラーが出てしまいます。
NoMethodError in Posts#index Showing /home/ec2-user/environment/gamesnap/app/views/posts/index.html.erb where line #5 raised: undefined method `img' for nil:NilClass Extracted source (around line #5): <% @posts.each do |post| %> <%= post.content %> <%= image_tag @post.img.url if @post.img? %> <% end %>
<%= image_tag @post.img.url if @post.img? %>の部分が5行目です。
imgをどのように変えればいいのでしょうか。
@post.img.urlとif @post.img?の両方ともエラーが出ます。
環境
ruby :2.6.3
ruby on rails :5.0.7.2
carrierwave :1.3.1
コード
post.rb
class Post < ApplicationRecord #validates :content, {presence: true, length: {maximum: 140}} mount_uploader :img, ImgUploader end
routes.rb
Rails.application.routes.draw do get 'posts/index' => "posts#index" get 'posts/new' => "posts#new" post "posts/create" => "posts#create" post "posts/:id/destroy" => "posts#destroy" get "posts/like" => "posts#like" get '/' => "posts#index" # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end
posts_controller.rb
class PostsController < ApplicationController def index @posts = Post.all.order(created_at: :desc) end def new @post = Post.new end def create @post = Post.new(post_params) if @post.save flash[:notice] = "投稿しました" redirect_to("/posts/index") else flash[:notice] = "文字数を140字以内にしてください" render("posts/new") end end def like end def post_params params.permit(:content, :img) end end
schema.rb
ActiveRecord::Schema.define(version: 20210530123925) do create_table "posts", force: :cascade do |t| t.text "content" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.string "title" t.string "img" end create_table "users", force: :cascade do |t| t.string "name" t.datetime "created_at", null: false t.datetime "updated_at", null: false end end
index.html.erb
<h1>一覧画面</h1> <% @posts.each do |post| %> <%= post.content %> <%= image_tag @post.img.url if @post.img? %> <% end %>
new.html.erb
<h1>投稿画面</h1> <% @post.errors.full_messages.each do |message| %> <%= message %> <% end %> <%= form_tag("/posts/create", {multipart: true}) do %> <textarea name = "content"><%= @post.content %></textarea> <%= file_field_tag(:img) %> <input type = "submit" value = "投稿" > <% end %>
railsを触り始めて日が浅いものですので、根本的に間違えてる可能性もございますが、ご教示いただけたら幸いです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。