问题描述
我的模型需要两个字段,然后用该模型验证端点:
config_model = api.model('Configuration',{
'cuvettes_count': fields.Integer,'pipettes_count': fields.Integer
})
# later
class ConfigEndpoint(Resource):
@config_endpoint.expect(config_model,validate=True)
def put(self):
我如何:
解决方法
如果存在除了指定的两个密钥以外的密钥,则会引发验证错误
当前,flask-restx不允许开箱即用。以下PR应该添加该功能。您甚至可以通过创建具有建议更改的自定义Model类,尝试在代码中采用PR。
如果两个密钥都不存在,但一次只需要一个密钥,则会引发验证错误
我猜最简单的方法是直接使用jsonschema,例如波纹管
config_model = api.schema_model('Configuration',{
'type': 'object','properties': {
'cuvettes_count': {'type': 'integer'},'pipettes_count': {'type': 'integer'}
},'anyOf': [{'required': ['cuvettes_count']},{'required': ['pipettes_count']}]
})
不幸的是,这仅适用于输入数据的验证,不适用于封送处理响应。