我的模型需要两个字段,我使用该模型验证我的端点:
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):
我如何能:
- 如果存在指定的两个键之外的键,则引发验证错误
- 如果两个键都不存在,则引发验证错误,但一次只需要一个