Flask Marshmallow 中的过滤嵌套字段

Filter Nested field in Flask Marshmallow

我想在 Marshmallow 3 中将 is_active 列的嵌套字段过滤为 True 考虑以下场景 我有 3 张桌子

users (id, name)
organizations (id, name)
organization_user(id, organization_id, user_id, is_active)

现在我正在尝试打印所有组织及其活跃成员。 (有一些活跃和不活跃的成员)

我有以下架构

class OrganizationSchema(ma.ModelSchema):
    members_list = fields.Nested(OrgnizationUserSchema, many=True, exclude=('checklist', ))

class OrgnizationUserSchema(ma.ModelSchema):
    user_list = fields.Nested(UserSchema)

下面是代码

organization_schema = OrganizationSchema(many=True)
#Query for list of organization
organization_list = Organization.query.all()
organization_schema.dump(organization_list)

输出如下

[
    {
    'id': 1,
    'name': 'abc',
    'members_list': [
        {'id':1, 'organization_id': 1, 'user_id':1, 'is_active':True},
        {'id':1, 'organization_id': 1, 'user_id':2, 'is_active':False}
        ]
    }
]

我想要'is_active':True成员的输出如下

[
    {
    'id': 1,
    'name': 'abc',
    'members_list': [
        {'id':1, 'organization_id': 1, 'user_id':1, 'is_active':True}
        ]
    }
]

Marshmallow 提供了一个装饰器@post_dump。这里的问题是 Query 带来了所有数据,然后我们用 decorator @post_dump 过滤它。 但是流程应该是这样的,在查询时应该有一些方法来过滤数据而不是 post 查询过滤。

我走了另一条路。我有布料、设计和剩余物。对于每种面料,我需要获得所有设计,对于每种设计,我将获得指定城市的余数。

class ClothSchema(Schema):
    id = fields.Integer(dump_only=True)
    name = fields.String(validate=not_blank)
    type = fields.Nested(ClothTypeSchema)
    designs = fields.Nested(DesignSchema, many=True)

class DesignSchema(Schema):
    id = fields.Integer(dump_only=True)
    name = fields.String(validate=not_blank)
    remainders = fields.Nested(RemainderSchema, many=True)

class RemainderSchema(Schema):
    id = fields.Integer(dump_only=True)
    value = fields.String()
    city = fields.String()

我在控制器中获取了我需要的数据,这样就不会在移动中请求它们。

    db.session.query(Cloth)
    .join(Cloth.designs)
    .join(Design.remainders)
    .filter(Remainder.city == city)
    .options(contains_eager("designs").contains_eager("remainders"))

结果,我得到了所有给出余数的布料和设计。如果没有注明设计余数,则不会显示。

{
  "attributes": {
    "designs": {
      "data": [
        {
          "attributes": {
            "name": "Amely 10 ", 
            "remainders": {
              "data": [
                {
                  "attributes": {
                    "city": "CityEnum.MOSCOW", 
                    "value": "333"
                  }, 
                  "id": 9318, 
                  "type": "remainder"
                }
              ]
            }
          }, 
          "id": 365, 
          "type": "design"
        } 
      ], 
      "links": {
        "self": "/designs"
      }
    }, 
    "name": "Amely", 
    "rapport": null, 
    "type": {} 
  }, 
  "id": 22, 
  "type": "cloth"
}