$k. HttpResponse

A HTTP response

Constructor

new $k.HttpResponse()

Extends

Members

(static) BAD_REQUEST :number

Status code 400 Bad Request

Type:
  • number

(static) INTERNAL_SERVER_ERROR :number

Status code 500 Internal Server Error

Type:
  • number

(static) NOT_FOUND :number

Status code 404 Not Found

Type:
  • number

(static) NOT_MODIFIED :number

Status code 304 Not Modified

Type:
  • number

(static) OK :number

Status code 200 OK

Type:
  • number

(static) UNAUTHORIZED :number

Status code 401 Unauthorized

Type:
  • number

Methods

attach(attachment)

Attach a entity

Parameters:
NameTypeDescription
attachment$k.NetEntity
Inherited From
Throws:

If the entity is not a valid attachment

Type
$k.exception.TypeError

attachments() → {Array.<$k.NetEntity>}

Returns the attached entities

Returns:
Type: 
Array.<$k.NetEntity>

base64String() → {string|undefined}

Get the binay contents as base64-encoded string. Returns undefined if the contents is not binary

Returns:
Type: 
string | undefined

charset() → {string|undefined}

Returns the charset

Inherited From
Returns:
Type: 
string | undefined

code() → {number}

Returns the status code of the response

Returns:
Type: 
number

contentDisposition() → {string|undefined}

Returns the content disposition

Returns:
Type: 
string | undefined

contentLength() → {number|undefined}

Returns the content length

Returns:
Type: 
number | undefined

contentType() → {string|undefined}

Returns the content type (only the media type part)

Returns:
Type: 
string | undefined

dataUrl() → {string|undefined}

Returns the entity bytes as a data URL, or undefined if the entity is not binary

Inherited From
Returns:
Type: 
string | undefined

debugString() → {string}

Prints the entity, except binary contents, for debugging purposes

Returns:
Type: 
string

filename() → {string|undefined}

Returns the filename part of the content disposition field

Inherited From
Returns:
Type: 
string | undefined

formData() → {object}

Get all form fields (multipart/form-data or application/x-www-form-urlencoded). The property names correspond to the field names. The property values are either strings (if the form is of type application/x-www-form-urlencoded) or NetEntities (multipart/form-data)

Inherited From
Returns:
Type: 
object

headerField(fieldName) → {string|undefined}

Get the value of the field of the request header. Returns undefined if the field does not exist

Parameters:
NameTypeDescription
fieldNamestring
Returns:

The field value

Type: 
string | undefined

headerFields() → {object}

Get all fields of the request header. Field names are always lower case

Returns:
Type: 
object

isBinary() → {boolean}

True if the entity has binary contents

Inherited From
Returns:
Type: 
boolean

isSuccess() → {boolean}

Returns true if the code indicates a successful response (2xx), false otherwise

Returns:
Type: 
boolean

removeHeaderField(fieldName)

Removes the field of the request heade

Parameters:
NameTypeDescription
fieldNamestring
Since
  • 5.0.3

setCharset(charset)

Set the charset

Parameters:
NameTypeDescription
charsetstring
Throws:

If the charset is unknown

Type
$k.exception.InvalidValue

setCode(code)

Set the status code of the response

Parameters:
NameTypeDescription
codenumber
Throws:

If the code is not a valid HTTP status code

Type
$k.exception.InvalidValue

setCodeBadRequest()

Set the status code of the response to 400 (Bad request). Equivalent to setCode($k.HttpResponse.BAD_REQUEST)

setCodeNotFound()

Set the status code of the response to 404 (Not found). Equivalent to setCode($k.HttpResponse.NOT_FOUND)

setCodeNotModified()

Set the status code of the response to 304 (Not Modified). Equivalent to setCode($k.HttpResponse.NOT_MODIFIED)

setCodeOk()

Set the status code of the response to 200 (Ok). Equivalent to setCode($k.HttpResponse.OK)

setCodeUnauthorized()

Set the status code of the response to 401 (Unauthorized). Equivalent to setCode($k.HttpResponse.UNAUTHORIZED)

setContentDisposition(contentDisposition)

Set the content disposition

Parameters:
NameTypeDescription
contentDispositionstring

setContentLength(length)

Set the content length

Parameters:
NameTypeDescription
lengthnumber

setContents(contents)

Set the contents of the entity. Also sets the content type and filename if known. The contents object can be a string, document ($k.TextDocument), a blob value ($k.Blob) or another NetEntity

Parameters:
NameTypeDescription
contents

Contents object

setContentsFromBase64String(base64String)

Set the contents of the entity from a base64 encoded string

Parameters:
NameTypeDescription
base64String

Base64 encoded string

Since
  • 5.8.2

setContentType(mediaType, charsetopt)

Set the content type

Parameters:
NameTypeAttributesDescription
mediaTypestring

Media type of the contents

charsetstring<optional>

Charset of the contents

setCookie(cookie)

Add the cookie to the response, instructing the client to set the cookie

Parameters:
NameTypeDescription
cookie$k.NewCookie

The new cookie

Throws:

If the cookie is not a valid new cookie

Type
$k.exception.TypeError

setFilename(filename)

Set the filename part of the content disposition field

Parameters:
NameTypeDescription
filenamestring

setHeaderField(fieldName, fieldValue)

Set the value of the field of the request header

Parameters:
NameTypeDescription
fieldNamestring
fieldValue
Throws:

If the value does not match the type of the field

Type
$k.exception.TypeError

setText(text)

Set the text as the body

Parameters:
NameTypeDescription
textstring
Inherited From

text(charsetopt) → {string}

Get the contents as string

Parameters:
NameTypeAttributesDescription
charsetstring<optional>

Charset of the characters. Required for binary entities. Optional for text entities.

Inherited From
Returns:
Type: 
string