使用 Context#Bind(i interface{}) 绑定一个请求内容体到 go 的结构体。默认的绑定器支持解析 Content-Type 是 application/json,application/xml 和 application/x-www-form-urlencoded 的数据。
Context#Bind(i interface{})
下面是绑定请求数据到 User 结构体的例子
// User User struct { Name string `json:"name" form:"name" query:"name"` Email string `json:"email" form:"email" query:"email"` }
// Handler func(c echo.Context) (err error) { u := new(User) if err = c.Bind(u); err != nil { return } return c.JSON(http.StatusOK, u) }
curl \ -X POST \ http://localhost:1323/users \ -H 'Content-Type: application/json' \ -d '{"name":"Joe","email":"joe@labstack"}'
curl \ -X POST \ http://localhost:1323/users \ -d 'name=Joe' \ -d 'email=joe@labstack.com'
curl \ -X GET \ http://localhost:1323/users\?name\=Joe\&email\=joe@labstack.com
可以通过 Echo#Binder自定义绑定器。
Echo#Binder
示例
type CustomBinder struct {} func (cb *CustomBinder) Bind(i interface{}, c echo.Context) (err error) { // 你也许会用到默认的绑定器 db := new(echo.DefaultBinder) if err = db.Bind(i, c); err != echo.ErrUnsupportedMediaType { return } // 做你自己的实现 return }
表单数据可以通过名称读取,使用这个方法 Context#FormValue(name string)。
Context#FormValue(name string)
// Handler func(c echo.Context) error { name := c.FormValue("name") return c.String(http.StatusOK, name) }
curl \ -X POST \ http://localhost:1323 \ -d 'name=Joe'
你可以实现 Echo#BindUnmarshaler 接口去去绑定自己的数据结构。
Echo#BindUnmarshaler
type Timestamp time.Time func (t *Timestamp) UnmarshalParam(src string) error { ts, err := time.Parse(time.RFC3339, src) *t = Timestamp(ts) return err }
url 请求参数可以通过名称获取,使用 Context#QueryParam(name string) 方法。
Context#QueryParam(name string)
// Handler func(c echo.Context) error { name := c.QueryParam("name") return c.String(http.StatusOK, name) })
curl \ -X GET \ http://localhost:1323\?name\=Joe
和表单数据一样,自定义数据也可以通过 Context#QueryParam(name string) 绑定。
url 请求参数可以通过 Context#Param(name string) string 获取。
Context#Param(name string) string
e.GET("/users/:name", func(c echo.Context) error { name := c.Param("name") return c.String(http.StatusOK, name) })
$ curl http://localhost:1323/users/Joe
Echo 没有内置数据验证功能,但是可以通过 Echo#Validator 和第三方库自己注册一个数据验证器。
Echo#Validator
下面例子 https://github.com/go-playground/validator 使用做验证
type ( User struct { Name string `json:"name" validate:"required"` Email string `json:"email" validate:"required,email"` } CustomValidator struct { validator *validator.Validate } ) func (cv *CustomValidator) Validate(i interface{}) error { return cv.validator.Struct(i) } func main() { e := echo.New() e.Validator = &CustomValidator{validator: validator.New()} e.POST("/users", func(c echo.Context) (err error) { u := new(User) if err = c.Bind(u); err != nil { return } if err = c.Validate(u); err != nil { return } return c.JSON(http.StatusOK, u) }) e.Logger.Fatal(e.Start(":1323")) }
curl \ -X POST \ http://localhost:1323/users \ -H 'Content-Type: application/json' \ -d '{"name":"Joe","email":"joe@invalid-domain"}' {"message":"Key: 'User.Email' Error:Field validation for 'Email' failed on the 'email' tag"}
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8