#前提・実現したいこと
rails 5.2.4.1
ruby 2.6.5
carrierwave 1.0
mini_magick
Uploaderを活用して、画像ファイルのアップロードを実現したい。
#発生している問題・エラーメッセージ
投稿したタイミングでは、DBに保存されていることは確認できるが、
public/uploader/photoに画像が保存されない。
ActionView::Template::Error (Nil location provided. Can't build URI.): 12: <% end %> 13: </div> 14: 15: <%= image_tag post.photos.first.post_image.url(:medium), class: "card-img-top" %> 16: 17: <div class="card-body"> 18: <div class="row parts"> app/views/posts/index.html.erb:15:in `block in _app_views_posts_index_html_erb__2772057408990768450_70263398162000' app/views/posts/index.html.erb:1:in `_app_views_posts_index_html_erb__2772057408990768450_70263398162000'
#該当のソースコード
posts/index.html.erb
<% @posts.each do |post| %> <div class="col-md-8 col-md-2 mx-auto"> <div class="card-wrap"> <div class="card"> <div class="card-header align-items-center d-flex"> <%= link_to user_path(post.user), class: "no-text-decoration" do %> <%= image_tag 'dumbo_default.png', class: "post-profile-icon" %> <% end %> <%= link_to user_path(post.user), class: "black-color no-text-decoration", title: post.user.name do %> <strong><%= post.user.name %></strong> <% end %> </div> <%= image_tag post.photos.first.post_image.url(:medium), class: "card-img-top" %> 省略
schema.rb
create_table "photos", force: :cascade do |t| t.string "post_image" t.integer "post_id", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["post_id"], name: "index_photos_on_post_id" end create_table "posts", force: :cascade do |t| t.string "title" t.string "discription" t.integer "user_id", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["user_id"], name: "index_posts_on_user_id" end
models/post.rb
class Post < ApplicationRecord belongs_to :user has_many :photos, dependent: :destroy validates :title, presence: true accepts_nested_attributes_for :photos end
models/photo.rb
class Photo < ApplicationRecord belongs_to :post mount_uploader :post_image, PostImageUploader end
uploaders/post_image_uploader.rb
class PostImageUploader < CarrierWave::Uploader::Base # Include RMagick or MiniMagick support: # include CarrierWave::RMagick include CarrierWave::MiniMagick # Choose what kind of storage to use for this uploader: storage :file # storage :fog # Override the directory where uploaded files will be stored. # This is a sensible default for uploaders that are meant to be mounted: def store_dir "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}" end 省略 version :medium do process resize_to_fill: [1000, 1000] end # Add a white list of extensions which are allowed to be uploaded. # For images you might use something like this: def extension_whitelist %w(jpg jpeg gif png) end # Override the filename of the uploaded files: # Avoid using model.id or version_name here, see uploader/store.rb for details. # def filename # "something.jpg" if original_filename # end end
#試したこと
schema.rbを確認し、カラムに誤りがないかを確認。
modelsを確認し、アソシエーションが行えているかを確認。
もし、気になる点等ございましたら、コメントください。
また、情報不足ございましたら併せてコメントいただければ幸いです。
お手数ですがよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。