flask-RequestParser参数解析处理

flask中flask_restful库中reqparse.RequestParser可以对表单数据进行验证。

from flask_restful import reqparse
root_parse = reqparse.RequestParser() #设置一个参数检验解析器
root_parse.add_argument("targe_name", type="str", location="json", required=True, nullable=False, help="targe_name内容为空")
root_parse.add_argument(...)
root_args = root_parse.parse_args()
root_parse = reqparse.RequestParser() #设置一个参数检验解析器
root_parse.add_argument:为roota_parse添加一个检验参数
  • "targe_name":需要检验的参数名称
  • type:检验的参数类型
  • location:检验的参数来源
  • required:是否必须检验
  • nullable:检验结果是否可以为空
  • help:检验不通过时返回的信息

root_args = root_parse_args() #解析结果

上一篇:flask开发-数据库迁移问题解决:ERROR [flask_migrate] Error: Can‘t locate revision identified by ‘a1c25fe0fc0e‘


下一篇:flask微视频网站(环境准备)