画像ファイルの更新されず、編集画面にて画像を変更しても、投稿時に反映されません。
ご指摘よろしくお願いします。
<_form.html.erb>
<section> <div class="container"> <div class="co_post_form"> <%= form_for @community do |f| %> <div class="col"> <div class="field"> <%= f.label :title%> <%= f.text_field :title %> </div> <div class="body"> <%= f.label :introduction ,class:"introduction"%> <%= f.text_area :introduction ,class:"introduction" %> </div> <div class="image"> <%= f.label :intro_image %> <%= f.attachment_field :intro_image %> </div> <%= f.submit '投稿', class:"btn btn-primary btn-lg"%> </div> <%end%> </div> </div> </section>
<communities.controller.rb>
class CommunitiesController < ApplicationController before_action :set_community, only: [:edit, :show, :update] def new @community = Community.new end def create @community = current_user.communities.build(community_params)#ストロングパラメータを呼び出す if @community.save redirect_to communities_path(@community), notice: "投稿に成功しました。" else render :new end end def edit if @community.user_id != current_user.id redirect_to communities_path, alert: '不正なアクセスです。' end @community = Community.find(params[:id]) end def index @communities = Community.all end def show end def update if @community.update(community_params) redirect_to communities_path(@community), notice: "投稿に成功しました。" else render :edit end end def destroy community = Community.find(params[:id]) community.destroy redirect_to communities_path end private def community_params params.require(:community).permit(:title, :introduction, :intro_image) end def set_community @community = Community.find(params[:id]) end end
あなたの回答
tips
プレビュー