Interface Response

interface Response {
    body: string;
    headers: Record<string, string>;
    status: number;
    url: string;
}

Properties

Properties

body: string

响应包体内容

headers: Record<string, string>

响应头参数

status: number

返回状态码

url: string

请求地址