前提・実現したいこと
初学者です。学習のため記事投稿アプリに機能追加を行なっています。
記事投稿時にバリデーションエラーが発生した際、フォームに入力していた値を保持することの実現を目指しています。
記事投稿のインプット項目は3つ。画像・本文・タグ。
発生している問題・エラーメッセージ
本文に関しては入力していた値を保持できるのですが、タグに関しては保持できないでいます。
該当のソースコード
posts.controller.rb
class PostsController < ApplicationController before_action :require_login, only: %i[new create edit update destroy] def index @posts = if current_user current_user.feed.includes(:user).page(params[:page]).order(created_at: :desc) else Post.all.includes(:user).page(params[:page]).order(created_at: :desc) end @users = User.recent(5) end def new @post = Post.new end def create @post = current_user.posts.build(post_params) @post.save tag_list = params[:post][:tag].split(',') if @post.save @post.save_posts(tag_list) redirect_to posts_path, success: '投稿しました' else flash.now[:danger] = '投稿に失敗しました' render :new end end def edit @post = current_user.posts.find(params[:id]) end def update @post = current_user.posts.find(params[:id]) tag_list = params[:post][:tag].split(',') if @post.update(post_params) @post.save_posts(tag_list) redirect_to posts_path, success: '投稿を更新しました' else flash.now[:danger] = '投稿の更新に失敗しました' render :edit end end def show @post = Post.find(params[:id]) @comments = @post.comments.includes(:user).order(created_at: :desc) @comment = Comment.new end def destroy @post = current_user.posts.find(params[:id]) @post.destroy! redirect_to posts_path, success: '投稿を削除しました' end def search @posts = @search_form.search.includes(:user).page(params[:page]) end private def post_params params.require(:post).permit(:body, images: [], tag: []) end end
post.rb
# == Schema Information # # Table name: posts # # id :bigint not null, primary key # body :text(65535) not null # images :string(255) not null # created_at :datetime not null # updated_at :datetime not null # user_id :bigint # # Indexes # # index_posts_on_user_id (user_id) # # Foreign Keys # # fk_rails_... (user_id => users.id) # class Post < ApplicationRecord belongs_to :user mount_uploaders :images, PostImageUploader serialize :images, JSON validates :images, presence: true validates :body, presence: true, length: { maximum: 1000 } has_many :comments, dependent: :destroy has_many :likes, dependent: :destroy has_many :like_users, through: :likes, source: :user has_many :post_tag_relations, dependent: :destroy has_many :tags, through: :post_tag_relations, dependent: :destroy has_one :activity, as: :subject, dependent: :destroy scope :body_contain, ->(word) { where('body LIKE ?', "%#{word}%") } def save_posts(savepost_tags) current_tags = tags.pluck(:name) unless tags.nil? old_tags = current_tags - savepost_tags new_tags = savepost_tags - current_tags old_tags.each do |old_name| tags.delete Tag.find_by(name: old_name) end new_tags.each do |new_name| post_tag = Tag.find_or_create_by(name: new_name) tags << post_tag end end end
_form.html.slim
= form_with model: post, local: true, id: 'posts_form' do |f| = render 'shared/error_messages', object: post .form-group = f.label :images = f.file_field :images, multiple: true, class: 'form-control' - post.images.each do |image| = image_tag image.url, size: '100x100', class: 'image-thumbnail' .form-group = f.label :body #保持される = f.text_area :body, class: 'form-control' .form-group = f.label :tag #保持されない = f.text_field :tag, class: 'form-control' = f.submit class: 'btn btn-primary btn-raised'
new.html.slim
.container .row .col-md-6.col-12.offset-md-3 .card .card-body = render 'form', post: @post
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/12 10:36 編集