Range Range A struct containing the type and a slice of ranges will be returned. func ( c * Ctx ) Range ( size int ) ( Range , error ) // Range: bytes=500-700, 7...
ClearCookie ClearCookie Expire a client cookie (or all cookies if left empty) c . ClearCookie ( key ... string ) app . Get ( "/" , func ( c * fiber . Ctx ) { /...
Hostname Hostname Returns the hostname derived from the Host HTTP header. func ( c * Ctx ) Hostname () string // GET http://google.com/search app . Get ( "/" ...
OriginalURL OriginalURL Returns the original request URL. func ( c * Ctx ) OriginalURL () string // GET http://example.com/search?q=something app . Get ( "/" ...
Range Range An struct containg the type and a slice of ranges will be returned. c . Range ( int size ) // Range: bytes=500-700, 700-900 app . Get ( "/" , func ( c *...
SendStatus SendStatus Sets the status code and the correct status message in the body, if the response body is empty . You can find all used status codes and messages here . ...
Links Links Joins the links followed by the property to populate the response’s Link HTTP header field. func ( c * Ctx ) Links ( link ... string ) app . Get ( "/" ...
SendStatus SendStatus Sets the status code and the correct status message in the body, if the response body is empty . You can find all used status codes and messages here . ...
Query Query This property is an object containing a property for each query string parameter in the route. If there is no query string, it returns an empty string . c . Qu...