前提・実現したいこと
railsにて創作
indexページにて個数だけを変えたい。
商品を名前,個数、ジャンル、場所はクリエイトできて表示可能な状態です。
発生している問題・エラーメッセージ
エラーメッセージ ArgumentError in ItemsController#update wrong number of arguments (given 1, expected 0)
該当のソースコード
ソースコード views/items/index.html <%= render "layouts/header" %> <table class="table table-bordered"> <tbody> <th>カテゴリー</th> <% @categories.each do |category| %> <th><%= link_to category.name, category_path(category) %></th> <% end %> <th>場所</th> <% @places.each do |place| %> <th><%= link_to place.name, place_path(place) %></th> <% end %> </tbody> </table> <h2>商品一覧(全<%= @items.count %>件)</h2> <div class="flex"> <div> <table class="table table-inverse"> <thead> <tr> <th>名前</th> <th>ジャンル</th> <th>場所</th> <th>個数</th> </tr> </thead> <% @items.each do |item| %> <tbody> <tr> <td><%= item.name %></td> <% category = Category.find(item.category_id) %> <td><%= category.name %></td> <% place = Place.find(item.place_id) %> <td><%= place.name %></td> //ここからが問題だと思います <%= form_for(item, url: item_path(item), method: :patch) do |f| %> <td><%= item.count.to_i %>個 <%= f.select :count, (1..200) %> <%= f.submit "変更する" %> <% end %></td> <td><%= link_to '消去', item_path(item), method: :delete %></td> </tr> </tbody> </div> <% end %> </div> controllers/items_controller.rb class ItemsController < ApplicationController def new @item = Item.new end def index @categories = Category.all @places = Place.all @items = Item.all end def show @item = Item.find(params[:id]) end def create @item = Item.new(item_params) if @item.save redirect_to items_path else render :new end end def edit @item = Item.find(params[:id]) end def update @item = Item.find(params[:id]) if @item = update(item_params) redirect_to items_path else render :index end end def destroy item = Item.find(params[:id]) item.destroy redirect_to items_path end private def item_params params.require(:item).permit(:name, :count, :category_id, :place_id) end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/22 08:12
2020/07/22 08:27