当前位置: 首页>>代码示例>>Python>>正文


Python Model.clone方法代码示例

本文整理汇总了Python中flask_restplus.Model.clone方法的典型用法代码示例。如果您正苦于以下问题:Python Model.clone方法的具体用法?Python Model.clone怎么用?Python Model.clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在flask_restplus.Model的用法示例。


在下文中一共展示了Model.clone方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_clone_from_class

# 需要导入模块: from flask_restplus import Model [as 别名]
# 或者: from flask_restplus.Model import clone [as 别名]
    def test_clone_from_class(self):
        parent = Model('Parent', {
            'name': fields.String,
            'age': fields.Integer,
            'birthdate': fields.DateTime,
        })

        child = Model.clone('Child', parent, {
            'extra': fields.String,
        })

        assert child.__schema__ == {
            'properties': {
                'name': {
                    'type': 'string'
                },
                'age': {
                    'type': 'integer'
                },
                'birthdate': {
                    'type': 'string',
                    'format': 'date-time'
                },
                'extra': {
                    'type': 'string'
                }
            },
            'type': 'object'
        }
开发者ID:bedge,项目名称:flask-restplus,代码行数:31,代码来源:test_model.py

示例2: test_clone_from_class_with_multiple_parents

# 需要导入模块: from flask_restplus import Model [as 别名]
# 或者: from flask_restplus.Model import clone [as 别名]
    def test_clone_from_class_with_multiple_parents(self):
        grand_parent = Model('GrandParent', {
            'grand_parent': fields.String,
        })

        parent = Model('Parent', {
            'name': fields.String,
            'age': fields.Integer,
            'birthdate': fields.DateTime,
        })

        child = Model.clone('Child', grand_parent, parent, {
            'extra': fields.String,
        })

        self.assertEqual(child.__schema__, {
            'properties': {
                'grand_parent': {
                    'type': 'string'
                },
                'name': {
                    'type': 'string'
                },
                'age': {
                    'type': 'integer'
                },
                'birthdate': {
                    'type': 'string',
                    'format': 'date-time'
                },
                'extra': {
                    'type': 'string'
                }
            }
        })
开发者ID:NyanKiyoshi,项目名称:flask-restplus,代码行数:37,代码来源:test_model.py

示例3: test_clone_from_instance

# 需要导入模块: from flask_restplus import Model [as 别名]
# 或者: from flask_restplus.Model import clone [as 别名]
    def test_clone_from_instance(self):
        parent = Model('Parent', {
            'name': fields.String,
            'age': fields.Integer,
            'birthdate': fields.DateTime,
        })

        child = parent.clone('Child', {
            'extra': fields.String,
        })

        self.assertEqual(child.__schema__, {
            'properties': {
                'name': {
                    'type': 'string'
                },
                'age': {
                    'type': 'integer'
                },
                'birthdate': {
                    'type': 'string',
                    'format': 'date-time'
                },
                'extra': {
                    'type': 'string'
                }
            },
            'type': 'object'
        })
开发者ID:fixedd,项目名称:flask-restplus,代码行数:31,代码来源:test_model.py

示例4: test_clone_from_instance_with_multiple_parents

# 需要导入模块: from flask_restplus import Model [as 别名]
# 或者: from flask_restplus.Model import clone [as 别名]
    def test_clone_from_instance_with_multiple_parents(self):
        grand_parent = Model('GrandParent', {
            'grand_parent': fields.String,
        })

        parent = Model('Parent', {
            'name': fields.String,
            'age': fields.Integer,
            'birthdate': fields.DateTime,
        })

        child = grand_parent.clone('Child', parent, {
            'extra': fields.String,
        })

        assert child.__schema__ == {
            'properties': {
                'grand_parent': {
                    'type': 'string'
                },
                'name': {
                    'type': 'string'
                },
                'age': {
                    'type': 'integer'
                },
                'birthdate': {
                    'type': 'string',
                    'format': 'date-time'
                },
                'extra': {
                    'type': 'string'
                }
            },
            'type': 'object'
        }
开发者ID:bedge,项目名称:flask-restplus,代码行数:38,代码来源:test_model.py

示例5: Model

# 需要导入模块: from flask_restplus import Model [as 别名]
# 或者: from flask_restplus.Model import clone [as 别名]
import custom_fields as fields
from app.helpers.data import update_or_create
from app.models.custom_forms import CustomForms
from utils import ServiceDAO

# #############
# DEFINE MODELS
# #############

CUSTOM_FORM = Model('CustomForm', {
    'id': fields.Integer(),
    'speaker_form': fields.String(),
    'session_form': fields.String()
})

CUSTOM_FORM_POST = CUSTOM_FORM.clone('CustomFormPost')
del CUSTOM_FORM_POST['id']


# ##########
# DEFINE DAO
# ##########


class CFDAO(ServiceDAO):
    def create(self, event_id, data, url):
        data = self.validate(data)
        return update_or_create(self.model, event_id=event_id, **data)


CustomFormDAO = CFDAO(CustomForms, CUSTOM_FORM_POST)
开发者ID:SaptakS,项目名称:open-event-orga-server,代码行数:33,代码来源:non_apis.py


注:本文中的flask_restplus.Model.clone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。