私のRuby on Railsプロジェクトのモデルでは、いくつかの定義があります。
class PlaySport < ActiveRecord::Base
belongs_to :user
belongs_to :sport
def self.getLevel
end
def self.check_play_sport(cuser_id,sport_id)
end
def current_playing_sports
end
def all_played_sports
end
end
この関係をこのようにキャッチします
current_user.play_sports.current_playing_sports
しかし、未定義のメソッドエラー「current_playing_sports」が表示されます
なにが問題ですか?