前提・実現したいこと
今FURIMAアプリを作成しています。
カテゴリと商品を結びつけたく、ancestryをgemfileに導入し、
products.controller.rbを記述したところエラーが発生しました。
発生している問題・エラーメッセージ
NameError in ProductsController#index undefined local variable or method `has_ancestry' for #<Class:0x00007ff7d153ee10> Did you mean? has_many Extracted source (around line #3): class Category < ApplicationRecord has_many :products has_ancestry ← この部分がエラーの対象になっている end
該当のソースコード
schema.rb ActiveRecord::Schema.define(version: 2020_04_23_065557) do create_table "categories", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.string "ancestry" end create_table "products", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name", null: false t.text "infomation", null: false t.string "category", null: false t.string "brand" t.string "status", null: false t.string "delivery_fee", null: false t.string "ship_form", null: false t.integer "delivery_time", null: false t.integer "price", null: false t.integer "user_id", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false end end
product.rb class Product < ApplicationRecord belongs_to :category end
category.rb class Category < ApplicationRecord has_many :products has_ancestry end
products.controller.rb class ProductsController < ApplicationController def index @parents = Category.all end def show end end
seeds.rb lady = Category.create(:name=>"レディース") lady_tops = lady.children.create(:name=>"トップス") lady_jacket = lady.children.create(:name=>"ジャケット/アウター") lady_pantsu = lady.children.create(:name=>"パンツ") lady_sukato = lady.children.create(:name=>"スカート") men = Category.create(:name=>"メンズ") men_tops = men.children.create(:name=>"トップス") men_jacket = men.children.create(:name=>"ジャケット/アウター") men_pantsu = men.children.create(:name=>"パンツ") men_baggu = men.children.create(:name=>"バッグ")
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/23 12:12