前提・実現したいこと
某フリマアプリを開発中の初心者で
トップページから商品出品画面に遷移しようとするとエラーが発生します。
アクティブハッシュ実装後、バリデーション等を設定したら遷移できなくなった。
発生している問題・エラーメッセージ
NoMethodError in Items#new undefined method `errors' for nil:NilClass <% if model.errors.any? %> <div class="error-alert"> <ul> <% model.errors.full_messages.each do |message| %> <li class='error-message'><%= message %></li> <% end %>
該当のソースコード
<div class="items-sell-contents"> <header class="items-sell-header"> <%= link_to image_tag('furima-logo-color.png' , size: '185x50'), "/" %> </header> <div class="items-sell-main"> <h2 class="items-sell-title">商品の情報を入力</h2> <%= form_with(model: @item, local: true ) do |f| %> <%# インスタンスを渡して、エラー発生時にメッセージが表示されるようにしましょう。%> <%= render 'shared/error_messages', model: f.object %> <%# //インスタンスを渡して、エラー発生時にメッセージが表示されるようにしましょう。%>
class Item < ApplicationRecord with_options presence: true do validates :title validates :produce_description validates :category_id validates :produce_condition_id validates :shipping_charges_id validates :prefecture_id validates :days_to_delivery_id validates :price validates :image end belongs_to :user has_one_attached :image extend ActiveHash::Associations::ActiveRecordExtensions # カテゴリー belongs_to_active_hash :category # 都道府県 belongs_to_active_hash :prefecture # 発送までの日数 belongs_to_active_hash :days_to_delivery # 商品の状態 belongs_to_active_hash :produce_condition # 配送料の負担 belongs_to_active_hash :shipping_charge end
class ItemsController < ApplicationController def index @items = Item.all end def new @items = Item.new end def create @item = Item.new(item_params) if @item.save redirect_to root_path else render :new end end private def item_params params.require(:item).permit(:title, :produce_description, :category_id, :produce_condition_id, :shipping_charges_id, :prefecture_id, :image).merge(user_id: current_user.id) end end
初質問で至らないところがあると思いますが
ご助力をお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。