Documentation
¶
Index ¶
- func Put(c *Context)
- type Context
- func (c *Context) AddParam(name, value string)
- func (c *Context) Decode(result any, maxBodySize int64) error
- func (c *Context) DecodeJSON(result any, maxBodySize int64) error
- func (c *Context) Error(status int, err error) *Error
- func (c *Context) ErrorFromMessage(status int, message string, kv ...any) *Error
- func (c *Context) ErrorWithMessage(status int, err error, message string, kv ...any) *Error
- func (c *Context) Errorf(status int, format string, ps ...any) *Error
- func (c *Context) Param(name string) (string, error)
- func (c *Context) QueryInt(name string, _default int) (int, error)
- func (c *Context) QueryString(name string, _default string) string
- func (c *Context) QueryTime(name string, _default time.Time) (time.Time, error)
- func (c *Context) Render(statusCode int, data any) error
- func (c *Context) RenderData(statusCode int, data []byte) error
- func (c *Context) RenderJSON(statusCode int, data any) error
- func (c *Context) RenderStatusNoContent()
- func (c *Context) RenderStatusOK()
- func (c *Context) SetHeader(key, value string)
- func (c *Context) SetHeaderContentType(ct string)
- func (c *Context) SetHeaderWWWAuthenticate()
- func (c *Context) WriteHeader(statusCode int)
- type Error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Context ¶
type Context struct { Request *http.Request Response http.ResponseWriter RequestID string StatusCode int RenderType string // contains filtered or unexported fields }
func (*Context) ErrorFromMessage ¶
func (*Context) ErrorWithMessage ¶
func (*Context) RenderStatusNoContent ¶
func (c *Context) RenderStatusNoContent()
func (*Context) RenderStatusOK ¶
func (c *Context) RenderStatusOK()
func (*Context) SetHeaderContentType ¶
func (*Context) SetHeaderWWWAuthenticate ¶
func (c *Context) SetHeaderWWWAuthenticate()
func (*Context) WriteHeader ¶
Click to show internal directories.
Click to hide internal directories.