fetchのHTTPレスポンスデータです。HTTP response data for fetch.

Hierarchy

  • HTTPResponse

Methods

  • フェッチ結果のバイナリデータを取得します。Gets the binary data of the fetch result.

    Returns

    コンテンツのバイナリデータBinary data of content

    Returns Uint8Array

  • フェッチ結果の文字列を取得します。Gets the string of the fetch result.

    Returns

    コンテンツの文字列(UTF-8)Content string (UTF-8)

    Returns string

  • フェッチ結果を指定した文字コードで取得します。Gets the fetch result in the specified character code.

    Returns

    コンテンツの文字列Content string

    Parameters

    • charset: string

      文字コード character code

    Returns string

  • フェッチ結果のヘッダーを取得します。Gets the header of the fetch result.

    Returns

    key/valueで構成されたjavascriptオブジェクトThis javascript object is composed of key/value.

    Returns any

  • フェッチ結果のレスポンスコードを取得します。Gets the response code of the fetch result.

    Returns

    レスポンスコードResponse code

    Returns number