私のモデルでは、次のようなコンテキストがあります
acts_as_taggable_on :sport, :music
コンソールで私はこれを行うことができます
@student = Student.first
@student.sport_list = ("baseball, soccer")
@student.save
@student.music_list = ("rock, pop")
@student.save
@student.sport_list
[baseball, soccer]
@student.music_list
[rock, pop]
これはすべて正しく機能しますが、この動的な操作を実行したいビューでは、JavaScriptによって他のコンテキスト間で選択されたコンテキストを1つの文字列でキャッチします。
mycontext = music
私の疑問は次のとおりです。
@student.mycontext_list = "rock, pop"
Student:0xb4475d4cに対して次のエラー未定義メソッド `mycontext_list='が発生するため
友達に挨拶!!!