0
我在MongoDB和MongoMapper中使用Rails。我的問題是我有一個從另一個繼承的類,我想省略其中一個鍵。例如:在MongoMapper中防止繼承
class A
include MongoMapper::EmbeddedDocument
many :items
#Other keys I want
end
class Item < A
include MongoMapper::EmbeddedDocument
#Included Keys from A
#Other Keys that I want
end
這裏的問題是Item繼承了許多項目的A關係。我怎樣才能防止呢?