Railsで画像投稿したいと思っています。
私としては、
rails5
1<%= form_tag("/posts/create", {multipart: true}) do %> 2<input name="image" type="file">
で画像ファイルの投稿と認識され、
rails5
1 if params[:image] 2 @post.post_image_name = "#{@post.id}.jpg" 3 image = params[:image] 4 File.binwrite("public/post_images/#{@post.post_image_name}", image.read) 5 end
で画像ファイルにpost.idが名前として付き、サーバーに保存されるという認識です。
しかし文字情報は保存されますが、画像は保存されていません。(エラーは出ません)
rails consoleでpost=Post.allで出力すると
post_image_name: nilと表示されます。
お手数をおかけしますが、どこが間違っているのか教えていただけないでしょうか。
確認のため全体のコードを下に記述しています。
よろしくお願いします。
rails5
1(new.html.erb) 2<div class="main posts-new"> 3 <div class="container"> 4 <h1 class="form-heading">投稿する</h1> 5 6 <%= form_tag("/posts/create", {multipart: true}) do %> 7 <div class="form"> 8 <div class="form-body"> 9 <% @post.errors.full_messages.each do |message| %> 10 <div class="form-error"> 11 <%= message %> 12 </div> 13 <% end %> 14 15 <textarea name="content"><%= @post.content %></textarea> 16 <p>画像</p> 17 <input name="image" type="file"> 18 <input type="submit" value="投稿"> 19 20 </div> 21 </div> 22 <% end %> 23 </div> 24</div>
rails5
1(post_controll.rb) 2 def create 3 @post = Post.new( 4 content: params[:content], 5 user_id: @current_user.id 6 ) 7 8 if params[:image] 9 @post.post_image_name = "#{@post.id}.jpg" 10 image = params[:image] 11 File.binwrite("public/post_images/#{@post.post_image_name}", image.read) 12 end 13 14 if @post.save 15 flash[:notice] = "投稿を作成しました" 16 redirect_to("/posts/index") 17 else 18 render("posts/new") 19 end 20 end
rails5
1(route.rb) 2Rails.application.routes.draw do 3 post "posts/create" => "posts#create" 4end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/12/31 00:07