前提・実現したいこと
現在Ruby on Railsでアプリを作成中でform_withを使い、メモと写真を投稿し保存出来るようにしたいと考えております。
アソシエーション等を組み、テーブルも作成し、投稿をしてみた所、下記のエラーが発生してしまいました。
こちらのエラーを解決して投稿したデータを保存できるようにしたいです。
発生している問題・エラーメッセージ
ActiveModel::MissingAttributeError in ItemsController#new can't write unknown attribute `post_id` Extracted source (around line #12): def new @item = Item.new @item.build_post @post = Post.new(post_params) end Application Trace | Framework Trace | Full Trace app/controllers/items_controller.rb:12:in `new' Request Parameters: None Toggle session dump Toggle env dump Response Headers: None
items_controller.rb
class ItemsController < ApplicationController before_action :set_item, only: [:edit, :show] before_action :move_to_index, except: [:index, :show, :search] def index @items = Item.includes(:user).order("created_at DESC") end def new @item = Item.new @item.build_post @post = Post.new(post_params) end def create # binding.pry @item = Item.create(item_params) if @item.save flash[:success] = "投稿が完了しました!" else flash.now[:alert] = "投稿が失敗しました。" end end def destroy item = Item.find(params[:id]) item.destroy end def edit end def update item = Item.find(params[:id]) item.update(item_params) end def show @comment = Comment.new @comments = @item.comments.includes(:user) end def search @items = Item.search(params[:keyword]) end def download send_data(@post.img.read,:filename=>@post.img_identifier) end private def item_params params.require(:item).permit(:image, :memo, post_attributes: [:id,:img,:item_id]).merge(user_id: current_user.id) end def set_item @item = Item.find(params[:id]) end def move_to_index unless user_signed_in? redirect_to action: :index end end def post_params params.permit(:img) end end
models/item.rb
class Item < ApplicationRecord validates :memo, presence: true belongs_to :user has_many :comments belongs_to :post, dependent: :destroy accepts_nested_attributes_for :post def self.search(search) if search != "" Item.where('memo LIKE(?)', "%#{search}%") else Item.all end end end
models/post.rb
class Post < ApplicationRecord mount_uploader :img, ImageUploader validates :img, presence: true belongs_to :item end
view/items/_form.html.haml
= form_with(model: item, local: true) do |form| = form.text_area :memo, pleaceholder: "memo", rows: "10" = form.file_field :img = form.submit "SEND"
補足情報(FW/ツールのバージョンなど)
自分なりに試行錯誤してアプリを作成しており、associationの組み方など、間違っている箇所があるのかもしれません。
現在作成を進めれていない状態なので少しでもご助言頂ければ幸いです。
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。