request接收数据

request对象
    method:当前请求方法(POST,GET等)
    url:当前链接地址
    path:当前链接的路径
    environ:潜在的WSGI环境
    headers:传入的请求头作为字典类对象
    data:包含传入的请求数据作为
    args:请求链接中的参数(GET参数),解析后
    form:form提交中的参数,解析后
    values:args和forms的集合
    json:json格式的body数据,解析后
    cookies:cookie读取
request对象

相关文章:

  • 2021-06-11
  • 2021-11-23
  • 2021-09-25
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-02
  • 2021-09-03
  • 2022-12-23
  • 2021-12-19
  • 2021-04-02
  • 2022-01-18
  • 2022-02-11
相关资源
相似解决方案