Mongoengine数据库查询内部模型:我应该避免这种情况吗?如何以不同的方式做到这一点?

时间:2014-01-26 13:06:16

标签: flask mongoengine flask-mongoengine

我有这个模型结构:

class Item(db.Model):
    artist = db.StringField()

class Collection(db.Model):
    # a collection delivers a list of items.
    name = db.StringField()

class ListCollection(Collection):
    # the items are static
    items = db.ListField(Item)

class OtherCollection(Collection):
    # the items are queried dynamically, like a dynamic playlist for example
    artist = db.StringField()
    @property
    def items(self):   
        return Item.objects(artist=artist).all()

现在,OtherCollection弄乱了模型 - >我认为,看待分离。 OtherCollection有一个名字,也许是所有者等等(因此,我认为它是一个“模型”),但items是数据库查询的结果,至少在OtherCollection中子类。查询可以被视为“视图”,而不是模型。

我的问题是:如何以不同方式建模?

0 个答案:

没有答案