前提・実現したいこと
私はruby on railsをprogateで学習中で、その応用としてCarrierWaveを使って
画像投稿機能を実装してみたいのですがエラーが出てしまい実行できません
発生している問題・エラーメッセージ
該当のソースコード
#app/views/posts/new.html.erb <div class="main posts-new"> <div class="container"> <h1 class="form-heading">投稿する</h1> <%= form_tag("/posts/create",{multipart:true}) do %> <div> <textarea name="content"></textarea><br> <%= f.label :image %> <%= f.file_field :image %> </div> <%end%>
#app\controllers\posts_controller.rb class PostsController < ApplicationController before_action :authenticate_user before_action :ensure_correct_user, {only: [:edit, :update, :destroy]} def post_permit params.permit(:id, :name, :image) end def index @posts = Post.all.order(created_at: :desc) end def show @post = Post.find_by(id: params[:id]) @user = @post.user # 変数@likes_countを定義してください @likes_count = Like.where(post_id: @post.id).count end def new @post = Post.new end def create @post = Post.new( content: params[:content], user_id: @current_user.id, post_image: nil) @post.save if @post.save if params[:post_image] @post.post_image = "#{@post.id}.jpg" image = params[:post_image] File.binwrite("public/post_images/#{@post.post_image}",image.read) end flash[:notice] = "投稿を作成しました" redirect_to("/posts/index") else render("posts/new") end end def edit @post = Post.find_by(id: params[:id]) end def update @post = Post.find_by(id: params[:id]) @post.content = params[:content] if @post.save flash[:notice] = "投稿を編集しました" redirect_to("/posts/index") else render("posts/edit") end end def destroy @post = Post.find_by(id: params[:id]) @post.destroy flash[:notice] = "投稿を削除しました" redirect_to("/posts/index") end def ensure_correct_user @post = Post.find_by(id: params[:id]) if @post.user_id != @current_user.id flash[:notice] = "権限がありません" redirect_to("/posts/index") end end end
#app\views\posts\index.html.erb <div class="container"> <% @posts.each do |post| %> <div class="posts-index-item"> <div class="post-left"> <img src="<%= "/#{post.user.image_name}" %>"> </div> <div class="post-right"> <div class="post-user-name"> </div> <%= link_to(post.content, "/posts/#{post.id}") %> <img src="<%= @post_permit %>" width="100"> </div> </div> <% end %> </div> </div>
試したこと
補足情報(FW/ツールのバージョンなど)
Rails 5.2.4.2
ruby 2.6.6p146
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/17 01:39