本文整理汇总了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'
}
示例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'
}
}
})
示例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'
})
示例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'
}
示例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)