mirror of
https://github.com/beego/bee.git
synced 2024-11-21 23:50:54 +00:00
Merge pull request #432 from dawxy/develop
Fixed an error in the basicType of pointer when the swagger document was automatically generated
This commit is contained in:
commit
a1e8589798
@ -877,7 +877,11 @@ func typeAnalyser(f *ast.Field) (isSlice bool, realType, swaggerType string) {
|
|||||||
}
|
}
|
||||||
switch t := f.Type.(type) {
|
switch t := f.Type.(type) {
|
||||||
case *ast.StarExpr:
|
case *ast.StarExpr:
|
||||||
return false, fmt.Sprint(t.X), "object"
|
basicType := fmt.Sprint(t.X)
|
||||||
|
if k, ok := basicTypes[basicType]; ok {
|
||||||
|
return false, basicType, k
|
||||||
|
}
|
||||||
|
return false, basicType, "object"
|
||||||
case *ast.MapType:
|
case *ast.MapType:
|
||||||
val := fmt.Sprintf("%v", t.Value)
|
val := fmt.Sprintf("%v", t.Value)
|
||||||
if isBasicType(val) {
|
if isBasicType(val) {
|
||||||
|
Loading…
Reference in New Issue
Block a user