|
|
@@ -534,10 +534,10 @@ Note that you need to set the corresponding binding tag on all fields you want t
|
|
|
|
|
|
Also, Gin provides two sets of methods for binding:
|
|
|
- **Type** - Must bind
|
|
|
- - **Methods** - `Bind`, `BindJSON`, `BindQuery`
|
|
|
+ - **Methods** - `Bind`, `BindJSON`, `BindXML`, `BindQuery`
|
|
|
- **Behavior** - These methods use `MustBindWith` under the hood. If there is a binding error, the request is aborted with `c.AbortWithError(400, err).SetType(ErrorTypeBind)`. This sets the response status code to 400 and the `Content-Type` header is set to `text/plain; charset=utf-8`. Note that if you try to set the response code after this, it will result in a warning `[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 400 with 422`. If you wish to have greater control over the behavior, consider using the `ShouldBind` equivalent method.
|
|
|
- **Type** - Should bind
|
|
|
- - **Methods** - `ShouldBind`, `ShouldBindJSON`, `ShouldBindQuery`
|
|
|
+ - **Methods** - `ShouldBind`, `ShouldBindJSON`, `ShouldBindXML`, `ShouldBindQuery`
|
|
|
- **Behavior** - These methods use `ShouldBindWith` under the hood. If there is a binding error, the error is returned and it is the developer's responsibility to handle the request and error appropriately.
|
|
|
|
|
|
When using the Bind-method, Gin tries to infer the binder depending on the Content-Type header. If you are sure what you are binding, you can use `MustBindWith` or `ShouldBindWith`.
|
|
|
@@ -547,8 +547,8 @@ You can also specify that specific fields are required. If a field is decorated
|
|
|
```go
|
|
|
// Binding from JSON
|
|
|
type Login struct {
|
|
|
- User string `form:"user" json:"user" binding:"required"`
|
|
|
- Password string `form:"password" json:"password" binding:"required"`
|
|
|
+ User string `form:"user" json:"user" xml:"user" binding:"required"`
|
|
|
+ Password string `form:"password" json:"password" xml:"password" binding:"required"`
|
|
|
}
|
|
|
|
|
|
func main() {
|
|
|
@@ -557,30 +557,55 @@ func main() {
|
|
|
// Example for binding JSON ({"user": "manu", "password": "123"})
|
|
|
router.POST("/loginJSON", func(c *gin.Context) {
|
|
|
var json Login
|
|
|
- if err := c.ShouldBindJSON(&json); err == nil {
|
|
|
- if json.User == "manu" && json.Password == "123" {
|
|
|
- c.JSON(http.StatusOK, gin.H{"status": "you are logged in"})
|
|
|
- } else {
|
|
|
- c.JSON(http.StatusUnauthorized, gin.H{"status": "unauthorized"})
|
|
|
- }
|
|
|
- } else {
|
|
|
+ if err := c.ShouldBindXML(&json); err != nil {
|
|
|
+ c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ if json.User != "manu" || json.Password != "123" {
|
|
|
+ c.JSON(http.StatusUnauthorized, gin.H{"status": "unauthorized"})
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ c.JSON(http.StatusOK, gin.H{"status": "you are logged in"})
|
|
|
+ })
|
|
|
+
|
|
|
+ // Example for binding XML (
|
|
|
+ // <?xml version="1.0" encoding="UTF-8"?>
|
|
|
+ // <root>
|
|
|
+ // <user>user</user>
|
|
|
+ // <password>123</user>
|
|
|
+ // </root>)
|
|
|
+ router.POST("/loginXML", func(c *gin.Context) {
|
|
|
+ var xml Login
|
|
|
+ if err := c.ShouldBindXML(&xml); err != nil {
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
+ return
|
|
|
}
|
|
|
+
|
|
|
+ if xml.User != "manu" || xml.Password != "123" {
|
|
|
+ c.JSON(http.StatusUnauthorized, gin.H{"status": "unauthorized"})
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ c.JSON(http.StatusOK, gin.H{"status": "you are logged in"})
|
|
|
})
|
|
|
|
|
|
// Example for binding a HTML form (user=manu&password=123)
|
|
|
router.POST("/loginForm", func(c *gin.Context) {
|
|
|
var form Login
|
|
|
// This will infer what binder to use depending on the content-type header.
|
|
|
- if err := c.ShouldBind(&form); err == nil {
|
|
|
- if form.User == "manu" && form.Password == "123" {
|
|
|
- c.JSON(http.StatusOK, gin.H{"status": "you are logged in"})
|
|
|
- } else {
|
|
|
- c.JSON(http.StatusUnauthorized, gin.H{"status": "unauthorized"})
|
|
|
- }
|
|
|
- } else {
|
|
|
+ if err := c.ShouldBind(&form); err != nil {
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
+ return
|
|
|
}
|
|
|
+
|
|
|
+ if form.User != "manu" || form.Password != "123" {
|
|
|
+ c.JSON(http.StatusUnauthorized, gin.H{"status": "unauthorized"})
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ c.JSON(http.StatusOK, gin.H{"status": "you are logged in"})
|
|
|
})
|
|
|
|
|
|
// Listen and serve on 0.0.0.0:8080
|