現在railsで日記アプリを作成中なのですがDBにはimageのurlが保存されているのですが、Viewファイルで表示しようとするとurlが表示されるだけで画像が表示できません。解決方法分かる方いませんでしょうか。
show.html.haml
1.postTitle 2 = @post.title 3.postDate 4 = @post.created_at 5.postAuthor 6.postManage 7 = link_to "編集", edit_post_path(@post.id), class: "postManage__edit" 8 = link_to "削除", post_path(@post.id), method: :delete, class: "postManage__delete" 9.postText 10 = simple_format @post.body 11 .postImage 12 = @post.image 13
posts_controller
1class PostsController < ApplicationController 2 3 def index 4 @posts = Post.all 5 end 6 7 def new 8 @post = Post.new 9 end 10 11 def create 12 Post.create(post_params) 13 redirect_to root_path 14 end 15 16 def show 17 @post = Post.find(params[:id]) 18 end 19 20 def edit 21 @post = Post.find(params[:id]) 22 end 23 24 def update 25 post = Post.find(params[:id]) 26 post.update(post_params) 27 end 28 29 def destroy 30 post = Post.find(params[:id]) 31 post.destroy 32 redirect_to root_path 33 end 34 35 36 37 private 38 def post_params 39 params.require(:post).permit(:title, :body, :image).merge(user_id: current_user.id) 40 end 41end
model
1class Post < ApplicationRecord 2 belongs_to :user 3 validates :title, :body, presence: true 4 5 mount_uploader :image, ImageUploader 6end 7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/16 16:01