mirror of
https://github.com/beego/bee.git
synced 2024-11-25 09:50:55 +00:00
fix Fixed swagger send request @Param array parameter value error
This commit is contained in:
parent
6a86284cec
commit
a65ec026f9
@ -832,6 +832,7 @@ func setParamType(para *swagger.Parameter, typ string, pkgpath, controllerName s
|
|||||||
Type: paraType,
|
Type: paraType,
|
||||||
Format: paraFormat,
|
Format: paraFormat,
|
||||||
}
|
}
|
||||||
|
para.CollectionFormat = "multi"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
para.Type = paraType
|
para.Type = paraType
|
||||||
|
1
vendor/github.com/astaxie/beego/swagger/swagger.go
generated
vendored
1
vendor/github.com/astaxie/beego/swagger/swagger.go
generated
vendored
@ -98,6 +98,7 @@ type Parameter struct {
|
|||||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||||
Format string `json:"format,omitempty" yaml:"format,omitempty"`
|
Format string `json:"format,omitempty" yaml:"format,omitempty"`
|
||||||
Items *ParameterItems `json:"items,omitempty" yaml:"items,omitempty"`
|
Items *ParameterItems `json:"items,omitempty" yaml:"items,omitempty"`
|
||||||
|
CollectionFormat string `json:"collectionFormat,omitempty" yaml:"collectionFormat,omitempty"`
|
||||||
Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
|
Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user