我需要檢查JSON請求是否指定了字段。我的要求可以是: {"ip": "8.35.60.229", "blackListCountry" : "Az"}
或簡單地:{"ip": "8.35.60.229"}
。如何檢查JSON是否指定了數據?
如何檢查blackListCountry
是否存在於其中?
userIP = request.json["ip"]
blackListCountry = request.json["blackListCountry"]
print(blackListCountry)
[最有效的方法可能的重複檢查,如果字典項存在,並且如果處理其價值它確實](https://stackoverflow.com/questions/28859095/most-efficient-method-to-check-if-dictionary-key-exists-and-process-its-value-if) – coder
「json」是一個文本格式,而不是數據類型。你在這裏有一個簡單的'dict'。 –