我想在运行时扩展一个对象(ActiveRecord::Base 的实例)并调用一个类方法(以添加has_many
关联)。我理想的代码如下:
class User < ActiveRecord::Base
end
module Seller
has_many :bookings, :foreign_key => :seller_id
end
module Buyer
has_many :bookings, :foreign_key => :buyer_id
end
user = User.find(1)
user.extend Seller
user.bookings
请注意,我不想将模块包含在User
类中,我想扩展单个用户对象的行为,而不是所有用户对象。