Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 469 Bytes

_RequestGet_.md

File metadata and controls

30 lines (17 loc) · 469 Bytes

RequestGet

使用Get请求访问指定链接

response = RequestGet(link [, headers])

参数:

  • link [string]:链接
  • headers [table]:HttpHeaders,可选,默认为空

返回值:

  • response [table]:成功则返回Response表,表内成员如下,失败则返回nil:

    • statue [number]:状态码
    • headers [table]:响应头
    • body [string]:正文

示例