成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

marshmallow之schema嵌套

miracledan / 2866人閱讀

摘要:嵌套可以嵌套使用以表示對象間的關系如外鍵關系。在下面的例子中,和對象是一對多的關系必須使用或參數(shù)避免無限遞歸也可以使用導入模塊的方式傳遞嵌套,如自嵌套給傳遞字符串參數(shù)表示和對象本身的關系

schema嵌套

schema可以嵌套使用以表示對象間的關系(如外鍵關系)。

例如下例中Blog有一個用User對象表示的author屬性:

import datetime as dt

class User(object):
    def __init__(self, name, email):
        self.name = name
        self.email = email
        self.created_at = dt.datetime.now()
        self.friends = []
        self.employer = None

class Blog(object):
    def __init__(self, title, author):
        self.title = title
        self.author = author  # A User object

使用Nested子類接收嵌套的schema表示二者的關系:

from marshmallow import Schema, fields, pprint

class UserSchema(Schema):
    name = fields.String()
    email = fields.Email()
    created_at = fields.DateTime()

class BlogSchema(Schema):
    title = fields.String()
    author = fields.Nested(UserSchema)

序列化后的blog對象將包含嵌套的user對象:

user = User(name="Monty", email="[email protected]")
blog = Blog(title="Something Completely Different", author=user)
result = BlogSchema().dump(blog)
pprint(result)
# {"title": u"Something Completely Different",
#  "author": {"name": u"Monty",
#             "email": u"[email protected]",
#             "created_at": "2014-08-17T14:58:57.600623+00:00"}}

如果field嵌套對象是一個集合,必須設置many=True,如collaborators = fields.Nested(UserSchema, many=True)

指定嵌套對象的序列化字段

設置only參數(shù)顯式地指定對嵌套對象的哪些屬性進行序列化:

class BlogSchema2(Schema):
    title = fields.String()
    author = fields.Nested(UserSchema, only=["email"])

schema = BlogSchema2()
result = schema.dump(blog)
pprint(result)
# {
#     "title": u"Something Completely Different",
#     "author": {"email": u"[email protected]"}
# }

使用點分隔符可以表示深層嵌套對象的屬性:

class SiteSchema(Schema):
    blog = fields.Nested(BlogSchema2)

schema = SiteSchema(only=["blog.author.email"])
result, errors = schema.dump(site)
pprint(result)
# {
#     "blog": {
#         "author": {"email": u"[email protected]"}
#     }
# }

如果給only參數(shù)傳遞的是字符串(上面的例子傳遞的是列表),將返回單個值(上面的例子返回的是鍵值映射)或值的列表(需要設置many=True):

class UserSchema(Schema):
    name = fields.String()
    email = fields.Email()
    friends = fields.Nested("self", only="name", many=True)
# ... create ``user`` ...
result, errors = UserSchema().dump(user)
pprint(result)
# {
#     "name": "Steve",
#     "email": "[email protected]",
#     "friends": ["Mike", "Joe"]
# }
雙向嵌套

對于兩個互相嵌套的對象,可以使用類名引用嵌套的schema,即便是引用時該schema還沒有被定義。

在下面的例子中,Author和Book對象是一對多的關系:

class AuthorSchema(Schema):
    # 必須使用only或exclude參數(shù)避免無限遞歸
    books = fields.Nested("BookSchema", many=True, exclude=("author", ))
    class Meta:
        fields = ("id", "name", "books")

class BookSchema(Schema):
    author = fields.Nested(AuthorSchema, only=("id", "name"))
    class Meta:
        fields = ("id", "title", "author")
from marshmallow import pprint
from mymodels import Author, Book

author = Author(name="William Faulkner")
book = Book(title="As I Lay Dying", author=author)
book_result, errors = BookSchema().dump(book)
pprint(book_result, indent=2)
# {
#   "id": 124,
#   "title": "As I Lay Dying",
#   "author": {
#     "id": 8,
#     "name": "William Faulkner"
#   }
# }

author_result, errors = AuthorSchema().dump(author)
pprint(author_result, indent=2)
# {
#   "id": 8,
#   "name": "William Faulkner",
#   "books": [
#     {
#       "id": 124,
#       "title": "As I Lay Dying"
#     }
#   ]
# }

也可以使用導入模塊的方式傳遞嵌套schema,如books = fields.Nested("path.to.BookSchema", many=True, exclude=("author", ))

schema自嵌套

給Nested傳遞字符串參數(shù)self表示和對象本身的關系:

class UserSchema(Schema):
    name = fields.String()
    email = fields.Email()
    friends = fields.Nested("self", many=True)
    # Use the "exclude" argument to avoid infinite recursion
    employer = fields.Nested("self", exclude=("employer", ), default=None)

user = User("Steve", "[email protected]")
user.friends.append(User("Mike", "[email protected]"))
user.friends.append(User("Joe", "[email protected]"))
user.employer = User("Dirk", "[email protected]")
result = UserSchema().dump(user)
pprint(result.data, indent=2)
# {
#     "name": "Steve",
#     "email": "[email protected]",
#     "friends": [
#         {
#             "name": "Mike",
#             "email": "[email protected]",
#             "friends": [],
#             "employer": null
#         },
#         {
#             "name": "Joe",
#             "email": "[email protected]",
#             "friends": [],
#             "employer": null
#         }
#     ],
#     "employer": {
#         "name": "Dirk",
#         "email": "[email protected]",
#         "friends": []
#     }
# }

文章版權歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/43866.html

相關文章

  • marshmallow快速上手

    摘要:方法對應的是方法,它反序列化一個字典為數(shù)據(jù)結構。某些例如和內(nèi)置了驗證器驗證集合時,錯誤字典將基于無效字段的索引作為鍵通過給的參數(shù)傳遞對象,可以執(zhí)行額外的驗證驗證函數(shù)可以返回布爾值或拋出異常。 快速上手 Declaring Schemas 首先創(chuàng)建一個基礎的user模型(只是為了演示,并不是真正的模型): import datetime as dt class User(object)...

    jhhfft 評論0 收藏0
  • marshmallowSchema延伸功能

    摘要:創(chuàng)建實例時如果傳遞了,表示需要接收輸入數(shù)據(jù)集合,裝飾器注冊預處理和后處理方法時需要傳遞參數(shù)。 預處理和后處理方法 數(shù)據(jù)的預處理和后處理方法通過pre_load, post_load, pre_dump和post_dump裝飾器注冊: from marshmallow import Schema, fields, pre_load class UserSchema(Schema): ...

    hzx 評論0 收藏0
  • marshmallow自定義Field

    摘要:有三種方式創(chuàng)建自定義的。下面的例子判斷某個對象是否是某個對象的作者,以及的屬性是否出現(xiàn)單詞自定義錯誤信息字段驗證產(chǎn)生的錯誤信息可以在類級別或?qū)嵗墑e配置。在類級別時,可以定義為錯誤碼和錯誤信息的字典映射在類實例化時,給參數(shù)傳參對象 有三種方式創(chuàng)建自定義的field。 創(chuàng)建Field類的子類 創(chuàng)建繼承自marshmallow.fields.Field類的子類并實現(xiàn)_serialize和/...

    AWang 評論0 收藏0
  • Python序列化模型數(shù)據(jù)為JSON

    摘要:下面我們來說說如何使用來減輕序列化模型的工作量。主要包括如下個步驟定義模式序列化模型下面我們分別來看看。不得不說這個庫對于序列化模型其實挺實用的。 原文地址: http://52sox.com/use-python-serialization-orm-data-to-json/ 相信使用Python做Web開發(fā)的朋友都會遇到這樣1個問題,那就是在項目開發(fā)中使用模型框架,比如SQLAlc...

    nifhlheimr 評論0 收藏0
  • python和flask框架開發(fā)以太坊智能合約

    摘要:是以太坊開發(fā)的個人區(qū)塊鏈,可用于部署合約,開發(fā)應用程序和運行測試。安裝是一個用于與以太坊交互的庫。啟動以太坊測試區(qū)塊鏈服務器要部署智能合約,我們應該啟動測試以太坊服務器。最后,你將在以太坊合約中設置調(diào)用用戶對象時獲得的值。 將數(shù)據(jù)存儲在數(shù)據(jù)庫中是任何軟件應用程序不可或缺的一部分。無論如何控制該數(shù)據(jù)庫都有一個該數(shù)據(jù)的主控。區(qū)塊鏈技術將數(shù)據(jù)存儲到區(qū)塊鏈網(wǎng)絡內(nèi)的區(qū)塊中。因此,只要某個節(jié)點與網(wǎng)...

    enrecul101 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<