Update README.md

change  `ShouldBindXML` to `ShouldBindJSON`
This commit is contained in:
llgoer 2018-08-23 15:39:12 +08:00 committed by GitHub
parent 0da5b0c85a
commit bcd5cc38ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -557,7 +557,7 @@ func main() {
// Example for binding JSON ({"user": "manu", "password": "123"})
router.POST("/loginJSON", func(c *gin.Context) {
var json Login
if err := c.ShouldBindXML(&json); err != nil {
if err := c.ShouldBindJSON(&json); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}