HttpQuery-return

此JSON结构为HttpQuery函数调用时,当参数options结构中指定debug字段为true时,HttpQuery函数调试模式返回的数据结构。

HTTP状态码 StatusCode number 请求头信息 Header JSON Cookie信息 Cookies array 请求的完整路径信息 Trace JSON 报文长度 Length number 报文内容 Body string

返回的JSON数据结构示例:

{
    "StatusCode": 302,
    "Header": {
        "Content-Type": ["text/html"],
        // ...
    },
    "Cookies": [{
        // ...
    }],
    "Trace": {},
    "Length": 154,
    "Body": "..."
}

{@fun/Global/HttpQuery HttpQuery}, {@fun/Global/HttpQuery_Go HttpQuery_Go}