HTTPResponse.headers() 方法
¥HTTPResponse.headers() method
具有与响应关联的 HTTP 标头的对象。所有标头名称均为小写。
¥An object with HTTP headers associated with the response. All header names are lower-case.
签名
¥Signature
class HTTPResponse {
abstract headers(): Record<string, string>;
}
Returns:
Record<string, string>