You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ARequest
// @Param
type ARequest struct {
A string `query:"a"`
B string `json:"b"`
C int `header:"c"`
}
func (a *Controller) GetAction(c *fw.Context, req *ARequest) {
}
field A will be parsed from query string
field B will be parsed from json body
field C will be parsed from HTTP HEADER
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: