前提・実現したいこと
Ruby on Railsで投稿の出来るインスタグラムのようなアプリを作っています。
現在carriewaveで写真投稿機能を実装中です。
マイグレーションファイル、モデル、コントローラーを作成したのでビューを表示しようと思ったのですがエラーが発生してしまいました。
発生している問題・エラーメッセージ
ArgumentError in Items#new Showing /Users/uedatsuyoshi/my_projects/fassion_share_app/app/views/items/_form.html.haml where line #6 raised: First argument in form cannot contain nil or be empty Extracted source (around line #6): 4 5 6 7 8 = form.submit "SEND" = form_for @post do |f| = f.file_field :img = f.submit 'アップロードする' Trace of template inclusion: #<ActionView::Template app/views/items/new.html.haml locals=[]> Rails.root: /Users/uedatsuyoshi/my_projects/fassion_share_app Application Trace | Framework Trace | Full Trace app/views/items/_form.html.haml:6 app/views/items/new.html.haml:4 Request Parameters: None Toggle session dump Toggle env dump Response Headers: None
コントローラー controller/item_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 end def create Item.create(item_params) @post = Post.new(post_params) 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 private def item_params params.require(:item).permit(:image, :memo).merge(user_id: current_user.id) end
ビュー views/items/_form.html.haml
= form_with(model: item, local: true) do |form| = form.text_field :image, placeholder: "Image Url" = form.text_area :memo, pleaceholder: "memo", rows: "10" = form.submit "SEND" = form_for @post do |f| = f.file_field :img = f.submit 'アップロードする'
ビュー views/items/new.html.haml
.contents.row .container %h3 投稿する = render partial: "form", locals: { item: @item}
モデル models/post.rb
class Post < ApplicationRecord mount_uploader :img, ImageUploader end
モデル models/item.rb
class Item < ApplicationRecord validates :memo, presence: true belongs_to :user has_many :comments def self.search(search) if search != "" Item.where('memo LIKE(?)', "%#{search}%") else Item.all end end end
ルーティング config/routes.rb
Rails.application.routes.draw do devise_for :users root to: 'items#index' resources :items do resources :comments, only: :create collection do get 'search' end end resources :users, only: :show end
試したこと
補足情報
記事を読んで同じような事象が無いのか検索してみたのですが見つかりませんでした。
CarrierWaveを導入するのに参考にした記事です。
https://techacademy.jp/magazine/22195
御助力お願いいたします。
回答2件
あなたの回答
tips
プレビュー