Documentation ¶
Index ¶
- Constants
- Variables
- func NewRouter(e *Echo) (r *router)
- type Context
- func (c *Context) Bind(i interface{}) error
- func (c *Context) Get(key string) interface{}
- func (c *Context) HTML(code int, html string) (err error)
- func (c *Context) HTMLTemplate(code int, t *template.Template, name string, data interface{}) (err error)
- func (c *Context) JSON(code int, i interface{}) error
- func (c *Context) P(i uint8) string
- func (c *Context) Param(n string) string
- func (c *Context) Redirect(code int, url string)
- func (c *Context) Render(code int, i interface{}) error
- func (c *Context) Set(key string, val interface{})
- func (c *Context) String(code int, s string) (err error)
- type Echo
- func (e *Echo) Connect(path string, h Handler)
- func (e *Echo) Delete(path string, h Handler)
- func (e *Echo) Get(path string, h Handler)
- func (e *Echo) Group(pfx string) *Echo
- func (e *Echo) Head(path string, h Handler)
- func (e *Echo) Index(file string)
- func (e *Echo) InternalServerErrorHandler(h Handler)
- func (e *Echo) MaxParam(n uint8)
- func (e *Echo) MethodNotAllowedHandler(h Handler)
- func (e *Echo) NotFoundHandler(h Handler)
- func (e *Echo) Options(path string, h Handler)
- func (e *Echo) Patch(path string, h Handler)
- func (e *Echo) Post(path string, h Handler)
- func (e *Echo) Put(path string, h Handler)
- func (e *Echo) Run(addr string)
- func (e *Echo) RunServer(server *http.Server)
- func (e *Echo) RunTLS(addr, certFile, keyFile string)
- func (e *Echo) RunTLSServer(server *http.Server, certFile, keyFile string)
- func (e *Echo) ServeFile(path, file string)
- func (e *Echo) ServeHTTP(rw http.ResponseWriter, r *http.Request)
- func (e *Echo) Static(path, root string)
- func (e *Echo) Sub(pfx string) *Echo
- func (e *Echo) Trace(path string, h Handler)
- func (e *Echo) Use(m ...Middleware)
- type Handler
- type HandlerFunc
- type Middleware
- type MiddlewareFunc
- type Params
Constants ¶
const ( MethodCONNECT = "CONNECT" MethodDELETE = "DELETE" MethodGET = "GET" MethodHEAD = "HEAD" MethodOPTIONS = "OPTIONS" MethodPATCH = "PATCH" MethodPOST = "POST" MethodPUT = "PUT" MethodTRACE = "TRACE" MIMEJSON = "application/json" MIMEText = "text/plain" MIMEHTML = "html/plain" MIMEForm = "application/x-www-form-urlencoded" MIMEMultipartForm = "multipart/form-data" HeaderAccept = "Accept" HeaderContentDisposition = "Content-Disposition" HeaderContentLength = "Content-Length" HeaderContentType = "Content-Type" )
Variables ¶
var ( // Errors ErrUnsupportedMediaType = errors.New("echo: unsupported media type") )
Functions ¶
Types ¶
type Context ¶
type Context struct { Request *http.Request Response *response // contains filtered or unexported fields }
Context represents context for the current request. It holds request and response references, path parameters, data and registered handler.
func (*Context) HTMLTemplate ¶ added in v0.0.5
func (c *Context) HTMLTemplate(code int, t *template.Template, name string, data interface{}) (err error)
HTMLTemplate applies the template associated with t that has the given name to the specified data object and sends an html/plain response with status code.
func (*Context) Render ¶ added in v0.0.5
Render encodes the provided type and sends a response with status code based on Accept header.
type Echo ¶
type Echo struct { Router *router // contains filtered or unexported fields }
func (*Echo) Group ¶ added in v0.0.4
Group is similar to Sub but excludes inheriting middleware from the parent router.
func (*Echo) InternalServerErrorHandler ¶
InternalServerErrorHandler sets a custom InternalServerError handler.
func (*Echo) MaxParam ¶
MaxParam sets the maximum allowed path parameters. Default is 5, good enough for many users.
func (*Echo) MethodNotAllowedHandler ¶
MethodNotAllowedHandler sets a custom MethodNotAllowed handler.
func (*Echo) NotFoundHandler ¶
NotFoundHandler sets a custom NotFound handler.
func (*Echo) RunTLSServer ¶ added in v0.0.5
RunTLSServer runs a custom server with TLS configuration
func (*Echo) Sub ¶ added in v0.0.3
Sub creates a new sub router. It inherits all properties from the parent router, including middleware.
type HandlerFunc ¶
type HandlerFunc func(*Context)
func (HandlerFunc) ServeHTTP ¶
func (h HandlerFunc) ServeHTTP(http.ResponseWriter, *http.Request)
NOP
type Middleware ¶
type Middleware interface{}
type MiddlewareFunc ¶
type MiddlewareFunc func(HandlerFunc) HandlerFunc