ShouldBindBodyWithJSON is a shortcut for c.ShouldBindBodyWith(obj, binding.JSON).
(obj any)
| 944 | |
| 945 | // ShouldBindBodyWithJSON is a shortcut for c.ShouldBindBodyWith(obj, binding.JSON). |
| 946 | func (c *Context) ShouldBindBodyWithJSON(obj any) error { |
| 947 | return c.ShouldBindBodyWith(obj, binding.JSON) |
| 948 | } |
| 949 | |
| 950 | // ShouldBindBodyWithXML is a shortcut for c.ShouldBindBodyWith(obj, binding.XML). |
| 951 | func (c *Context) ShouldBindBodyWithXML(obj any) error { |