我想做的具体改变是我想摆脱模型的基类。假设我有一个基类 Fruit,然后我有两个不同的扩展水果类 Orange 和 Banana。
所以我有这样的事情:
class Fruit
include Mongoid::Document
field :weight, type: Integer
end
class Orange < Fruit
end
class Banana < Fruit
end
我想在不丢失任何数据或对水果的引用的情况下将其转换为此:
class Orange
include Mongoid::Document
field :weight, type: Integer
end
class Banana
include Mongoid::Document
field :weight, type: Integer
end
PS请不要质疑我为什么要看似打破DRY规则并摆脱继承的原因。我有我的理由,它们很好:),最终的想法是将重复的东西重构到一个模块中。