第三单是get,put,post方法的混用,相当简单,不用单独记录。直接记录第4章。
import json, falcon
class ObjRequestClass:
def __json_validate_input(self, req):
try:
self.__json_content = json.loads(req.stream.read())
print("json from client is validated:)")
return True
except Exception as e:
self.__json_content = {}
print("数据验证失败,请重新检查:(")
return False
def on_get(self, req, resp):
va = self.__json_validate_input(req)
output = {
"status": "200",
"msg": None
}
if va == True:
resp.status = falcon.HTTP_200
output['msg'] = "hello {}".format(self.__json_content['name'])
else:
resp.status = falcon.HTTP_500
output['status'] = 404
output['msg'] = "数据验证失败,请重新检查"
resp.body = json.dumps(output)
api = falcon.API()
api.add_route('/test', ObjRequestClass())
首先定义个验证方法“__json_validate_input”,然后调用一下就行了,也是相当简单。有一个重点req.stream.read(),读取一次就会清空,经过尝试,print后也会清空,所以此处需要赋值变量引用。
运行后,通过insomnia或postman等工具,传递下不同数据,验证结果即可。
原视频地址:https://www.pnk.sh/python-falcon-part-4-how-to-validated-json-input-from-your-client
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。