We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
can not bind a slice of struct when the request type is formdata
type request struct { id uint `form:"id" json:"id"` Products []product `form:"products"` } type product struct { Name string `form:"name"` Quantity int `form:"quantity"` Price float32 `form:"price"` }