1

私はゴルフ協会のウェブサイトに取り組んでいます。いくつかの異なるモデルを持っていますが、コースを組み込もうとしたときに問題が発生しました。ゴルフ クラブに複数のコースがある場合、またはコース名がゴルフ クラブと異なる場合、コースはコース名を表します (例: トルーン ノース ゴルフ クラブにはピナクルとモニュメントの 2 つのコースがあります)。協会の作り方がわからない

class Tournament < ActiveRecord::Base
    has_many :rounds, dependent: :destroy
    has_many :clubs, through: :rounds, dependent: :destroy
    // do I need this to be able to do @tournament.rounds.first.course.first.name?
    has_many :courses, through: :rounds

class Round < ActiveRecord::Base
    belongs_to :tournament
    belongs_to :club
    // not all rounds will have a course
    has_many :courses, :through => :rounds

class Club < ActiveRecord::Base  
    has_many :rounds, dependent: :destroy
    has_many :tournaments, :through => :rounds, dependent: :destroy
    has_many :club_images, dependent: :destroy
    // not all clubs will have a course
    has_many :courses, dependent: :destroy

class Course < ActiveRecord::Base
    belongs_to :club
    belongs_to :rounds

私は :through を使ってみましたが、それなしでも試しました。http://guides.rubyonrails.org/association_basics.htmlのセクション 2.4を読んだ後、:through を使用できると思いました。

create_table "clubs", :force => true do |t|
  t.string   "name"
  t.string   "address"
  t.string   "city"
  t.string   "state"
  t.string   "zip"
  t.string   "phone"
  t.string   "website"
  t.datetime "created_at"
  t.datetime "updated_at"
  t.string   "logo_file_name"
  t.string   "logo_content_type"
  t.integer  "logo_file_size"
  t.datetime "logo_updated_at"
end

create_table "courses", :force => true do |t|
  t.integer  "club_id"
  t.string   "name"
  t.datetime "created_at"
  t.datetime "updated_at"
end

create_table "rounds", :force => true do |t|
  t.integer  "tournament_id"
  t.integer  "club_id"
  t.integer  "course_id"
  t.datetime "start_time"
  t.datetime "checkin_time"
  t.datetime "entry_deadline"
  t.decimal  "member_fee"
  t.decimal  "guest_fee"
  t.boolean  "scoring"
  t.boolean  "lunch_included"
  t.text     "comments"
  t.datetime "created_at"
  t.datetime "updated_at"
end

create_table "tournaments", :force => true do |t|
  t.string   "name"
  t.date     "start_date"
  t.date     "end_date"
  t.text     "comments"
  t.text     "practice_round_comments"
  t.datetime "created_at"
  t.datetime "updated_at"
end

@round.courses を実行しようとすると、次のメッセージが表示されます。

少し混乱していて、どこにいるのかわからない。どんな助けでも大歓迎です。ありがとう!

4

1 に答える 1