mirror of
				https://github.com/gin-gonic/gin.git
				synced 2025-11-04 01:02:14 +08:00 
			
		
		
		
	doc(context): more clearer bind doc when input is not valid (#1049)
This commit is contained in:
		
							parent
							
								
									7fafb3f4a1
								
							
						
					
					
						commit
						df37e74fa1
					
				@ -456,7 +456,7 @@ func (c *Context) SaveUploadedFile(file *multipart.FileHeader, dst string) error
 | 
				
			|||||||
// otherwise --> returns an error
 | 
					// otherwise --> returns an error
 | 
				
			||||||
// It parses the request's body as JSON if Content-Type == "application/json" using JSON or XML as a JSON input.
 | 
					// It parses the request's body as JSON if Content-Type == "application/json" using JSON or XML as a JSON input.
 | 
				
			||||||
// It decodes the json payload into the struct specified as a pointer.
 | 
					// It decodes the json payload into the struct specified as a pointer.
 | 
				
			||||||
// Like ParseBody() but this method also writes a 400 error if the json is not valid.
 | 
					// It will writes a 400 error and sets Content-Type header "text/plain" in the response if input is not valid.
 | 
				
			||||||
func (c *Context) Bind(obj interface{}) error {
 | 
					func (c *Context) Bind(obj interface{}) error {
 | 
				
			||||||
	b := binding.Default(c.Request.Method, c.ContentType())
 | 
						b := binding.Default(c.Request.Method, c.ContentType())
 | 
				
			||||||
	return c.MustBindWith(obj, b)
 | 
						return c.MustBindWith(obj, b)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user