#現状
現在、オリジナルアプリ作成中で、投稿機能と多対多の関係でタグ機能を実装中です。投稿ページ(new.html.erb)から、投稿タイトル、内容、画像(active storage)、タグを入力させ、送信し、投稿一覧画面で表示させようとしています。しかし、ブラウザから記事を投稿しようとすると投稿一覧画面に表示されません。データベースを見てみると、tagsテーブルの方には、レコードが追加されていますが、board_tag_relations(中間テーブル)とboardsテーブル(投稿テーブル)にはレコードが追加されていませんでした。
#仮説
boards_controller.rb(投稿機能)のcreateメソッドにbinding.pryをかけてみるとparamsは送られていました。そのため、boards_tag.rb(Formオブジェクト)かboards_controllerでの記述がおかしいと思われるのですが、検討がつきません。以下のURLがparamsの情報です。
https://i.gyazo.com/f37c76b4ef3b289ec7b8586b970013b4.png
#ソースコード
routes.rb Rails.application.routes.draw do devise_for :users root to: "boards#index" resources :users, only: [:show, :edit, :update, :destroy] resources :boards do resources :comments, only: :create end end
board_tag_relations.rb class BoardTagRelation < ApplicationRecord belongs_to :board belongs_to :tag end
board.rb class Board < ApplicationRecord belongs_to :user has_many :comments, dependent: :destroy has_one_attached :image has_many :board_tag_relations has_many :tags, through: :board_tag_relations end
tag.rb class Tag < ApplicationRecord has_many :board_tag_relations has_many :boards, through: :board_tag_relations validates :name, uniqueness: true end
boards_tag.rb (Formオブジェクト) class BoardsTag include ActiveModel::Model attr_accessor :image,:title,:text,:name,:user_id with_options presence: true do validates :image validates :title validates :text validates :name end def save board = Board.create(image: image, title: title, text: text) tag = Tag.where(name: name).first_or_initialize tag.save BoardTagRelation.create(board_id: board.id, tag_id: tag.id) end end
boards_controller.rb def index @boards = Board.includes(:user).all.order(created_at: :desc) end def new @board = BoardsTag.new end def create @board = BoardsTag.new(board_params) if @board.valid? @board.save return redirect_to root_path else render "new" end end def board_params params.require(:boards_tag).permit(:title,:text,:image,:name).merge(user_id: current_user.id) end
#補足情報
今回、データベースに保存されていないことが原因だと思ったので、ビューのソースコードは見やすさを重視するために割愛しました。しかし、他に必要な情報がありましたら、返信していただければと思います。
回答2件
あなたの回答
tips
プレビュー