2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2014-08-29 21:49:50 +04:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-07-05 01:28:50 +04:00
|
|
|
package gin
|
2016-01-26 20:36:37 +03:00
|
|
|
|
2017-03-29 17:32:12 +03:00
|
|
|
import (
|
|
|
|
"log"
|
2016-01-26 20:36:37 +03:00
|
|
|
|
2017-07-02 17:59:21 +03:00
|
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
)
|
2017-03-29 17:32:12 +03:00
|
|
|
|
|
|
|
// BindWith binds the passed struct pointer using the specified binding engine.
|
|
|
|
// See the binding package.
|
2022-03-21 04:43:17 +03:00
|
|
|
func (c *Context) BindWith(obj any, b binding.Binding) error {
|
2017-03-29 17:32:12 +03:00
|
|
|
log.Println(`BindWith(\"interface{}, binding.Binding\") error is going to
|
|
|
|
be deprecated, please check issue #662 and either use MustBindWith() if you
|
2017-09-08 03:56:56 +03:00
|
|
|
want HTTP 400 to be automatically returned if any error occur, or use
|
2017-03-29 17:32:12 +03:00
|
|
|
ShouldBindWith() if you need to manage the error.`)
|
|
|
|
return c.MustBindWith(obj, b)
|
|
|
|
}
|