我正在使用 Ruby on Rails。我有一个名为 PatientFactory 的模块,它将包含在 Patient 模型中。
我需要从此模块访问患者的 ID。
module PatientFactory
def self.included(base)
# need to access instance variable here
...
end
end
但更重要的是,我需要在 self.included(base) 中使用它,我可以在此方法之外轻松访问它,但如何在内部访问它?