使用棉花糖 - mongoengine中的参考字段

时间:2016-09-26 21:31:41

标签: mongoengine marshmallow

如何在marshmallow_mongoengine中取消引用ReferenceFields?例如,dump_data = author_schema.dump(author).data会产生'5578726b7a58012298a5a7e2',而不是更有用的回复{title='Fight Club', author=author}

from marshmallow_mongoengine import ModelSchema

class AuthorSchema(ModelSchema):
    class Meta:
        model = Author

class BookSchema(ModelSchema):
    class Meta:
        model = Book

author_schema = AuthorSchema()

author = Author(name='Chuck Paluhniuk').save()
book = Book(title='Fight Club', author=author).save()

dump_data = author_schema.dump(author).data
# {'id': 1, 'name': 'Chuck Paluhniuk', 'books': ['5578726b7a58012298a5a7e2']}

author_schema.load(dump_data).data
# <Author(name='Chuck Paluhniuk')>

1 个答案:

答案 0 :(得分:4)

Nesting schemas

from marshmallow.fields import Nested

class AuthorSchema(ModelSchema):
    class Meta:
        model = Author        
    books = Nested("BookSchema",many=True)