2

python-eve REST API 框架中,我在资源中定义了一个列表,列表项的类型是 dict。而且我不希望列表为空。那么,如何定义模式呢?

{
    'parents' : {
        'type' : 'list',
        'schema' : {
            'parent' : 'string'
        }
    }
}
4

2 回答 2

2

目前empty验证规则仅适用于字符串类型,但您可以将标准验证器子类化以使其能够处理列表:

from eve.io.mongo import Validator

class MyValidator(Validator):
    def _validate_empty(self, empty, field, value):
        # let the standard validation happen
        super(Validator, self)._validate_empty(empty, field, value)
        # add your custom list validation
        if isinstance(value, list) and len(value) == 0 and not empty:
            self._error(field, "list cannot be empty")

或者,如果想提供标准empty错误消息:

from eve.io.mongo import Validator
from cerberus import errors

class MyValidator(Validator):
    def _validate_empty(self, empty, field, value):
        # let the standard validation happen
        super(Validator, self)._validate_empty(empty, field, value)
        # add your custom list validation
        if isinstance(value, list) and len(value) == 0 and not empty:
            self._error(field, errors.ERROR_EMPTY_NOT_ALLOWED)

然后你像这样运行你的 API:

app = Eve(validator=MyValidator)
app.run()

emptyPS:我计划在未来某个时候将列表和字典添加到 Cerberus 的规则中。

于 2014-05-17T05:56:23.873 回答
-1

没有内置的方法可以做到这一点。您可以为您的列表定义一个包装类:

class ListWrapper(list):
    # Constructor
    __init__(self, **kwargs):
        allIsGood = False
        # 'kwargs' is a dict with all your 'argument=value' pairs
        # Check if all arguments are given & set allIsGood
        if not allIsGood:
            raise ValueError("ListWrapper doesn't match schema!")
        else:
            # Call the list's constructor, i.e. the super constructor
            super(ListWrapper, self).__init__()

            # Manipulate 'self' as you please

ListWrapper在需要非空列表的任何地方使用。如果您愿意,您可以以某种方式外部化模式的定义并将其作为输入添加到构造函数。

另外:你可能想看看这个

于 2014-05-16T14:26:47.660 回答