1
如何指定一個結構來驗證用戶在JSON模式中的項目列表,比如字符串?如何讓用戶輸入JSON模式中的項目列表?
這是我到目前爲止有:提前
"list_of_str": {
"type": "array",
"items": {
"type": "string"
}
}
謝謝!
如何指定一個結構來驗證用戶在JSON模式中的項目列表,比如字符串?如何讓用戶輸入JSON模式中的項目列表?
這是我到目前爲止有:提前
"list_of_str": {
"type": "array",
"items": {
"type": "string"
}
}
謝謝!
>>> res = {
... "type": "array",
... "items": {
... "type": "string"
... }
... }
>>>
>>> one = ["one", "two"]
>>>
>>>
>>> validictory.validate(one, res)
>>> # No error
「validictory是一個通用Python數據驗證程序,允許驗證任意Python數據結構。」 (看到這個 - >Validictory docs)
謝謝Alberto!很有幫助。將研究這個簡單的驗證器。 – goldisfine
在這裏你有一個非常漂亮的教程http://www.alexconrad.org/2011/10/json-validation.html –
從jsonschema到目前爲止使用'驗證'https://pypi.python.org/pypi/ jsonschema – goldisfine