你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HttpRequest 类

HTTP 请求对象。

继承
azure.functions._http.HttpRequest
HttpRequest

构造函数

HttpRequest(method: str, url: str, *, headers: Mapping[str, str], params: Mapping[str, str], route_params: Mapping[str, str], body_type: str, body: str | bytes)

参数

名称 说明
method
必需
url
必需

仅限关键字的参数

名称 说明
headers
必需
params
必需
route_params
必需
body_type
必需
body
必需

方法

get_body
get_json

get_body

get_body() -> bytes

get_json

get_json() -> Any

属性

files

form

headers

method

params

route_params

url