Merge pull request #780 from gin-gonic/patch-4

Add comment for the logic behind func.
This commit is contained in:
Javier Provecho Fernandez 2017-01-02 13:54:06 +01:00 committed by GitHub
commit 565e1e0c87

View File

@ -404,6 +404,9 @@ func main() {
func startPage(c *gin.Context) { func startPage(c *gin.Context) {
var person Person var person Person
// If `GET`, only `Form` binding engine (`query`) used.
// If `POST`, first checks the `content-type` for `JSON` or `XML`, then uses `Form` (`form-data`).
// See more at https://github.com/gin-gonic/gin/blob/develop/binding/binding.go#L45
if c.Bind(&person) == nil { if c.Bind(&person) == nil {
log.Println(person.Name) log.Println(person.Name)
log.Println(person.Address) log.Println(person.Address)