在我的模型中,我有类似的上下文
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 在其他上下文之间选择的上下文,例如:
mycontext = music
我的疑问是:它可能使动态做
@student.mycontext_list = "rock, pop"
因为我收到以下错误 undefined method `mycontext_list=' for Student:0xb4475d4c
问候朋友!!!