2022-09-28 18:30:40 +01:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2021-08-12 20:03:24 +01:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BindWith binds the passed struct pointer using the specified binding engine.
|
|
|
|
// See the binding package.
|
2022-09-28 18:30:40 +01:00
|
|
|
func (c *Context) BindWith(obj any, b binding.Binding) error {
|
2023-06-01 22:20:16 +01:00
|
|
|
log.Println(`BindWith(\"any, binding.Binding\") error is going to
|
2021-08-12 20:03:24 +01:00
|
|
|
be deprecated, please check issue #662 and either use MustBindWith() if you
|
|
|
|
want HTTP 400 to be automatically returned if any error occur, or use
|
|
|
|
ShouldBindWith() if you need to manage the error.`)
|
|
|
|
return c.MustBindWith(obj, b)
|
|
|
|
}
|