我有以下型号:
User、ProcessType和Remark,如下:
class User < ActiveRecord::Base
has_many :process_type
end
class Remark < ActiveRecord::Base
belongs_to :process_type
end
class ProcessType < ActiveRecord::Base
belongs_to :user
has_many :remarks
end
只有一些用户与 ProcessType 相关联。添加 Remark 时,它会与某个 ProcessType 相关联(并且每个 ProcessType 都有一个 User 负责)。我希望当与某个 ProcessType 关联的用户登录时,可以看到该 processType 的所有备注。
我无法找出正确的方法,也许有人可以帮助我。
谢谢!