我的应用程序中有一个学生和教师模型。我希望老师能够创建学生可以多次完成的任务,但我也希望学生能够创建他/她自己的任务。这是我当前的模型结构:
class Task < ActiveRecord::Base
belongs_to :teacher
belongs_to :student
has_many :completed_tasks
class Student < ActiveRecord::Base
belongs_to :teacher
has_many :tasks
has_many :completed_tasks
class Teacher < ActiveRecord::Base
has_many :students
has_many :tasks
class CompletedTask < ActiveRecord::Base
belongs_to :student
belongs_to :task
在我看来,我希望老师能够为他/她的学生添加任务。当学生查看他们的任务时,他们会看到教师的可用任务并且可以添加自己的任务。然后学生在单独的视图中将任务标记为已完成。我应该考虑为此使用多态关联吗?我的情况似乎与Ryan Bates 的 Railscast #154中使用的情况有点不同,因为教师和学生与任务的交互方式略有不同。