Merge pull request #573 from lyfunny/develop

gendoc bug
This commit is contained in:
askuy 2020-06-23 21:56:47 +08:00 committed by GitHub
commit a780721c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -730,7 +730,7 @@ func parserComments(f *ast.FuncDecl, controllerName, pkgpath string) error {
} }
} }
} }
routerPath = urlReplace(routerPath)
if routerPath != "" { if routerPath != "" {
//Go over function parameters which were not mapped and create swagger params for them //Go over function parameters which were not mapped and create swagger params for them
for name, typ := range funcParamMap { for name, typ := range funcParamMap {
@ -1209,7 +1209,7 @@ func parseStruct(st *ast.StructType, k string, m *swagger.Schema, realTypes *[]s
for _, pkg := range astPkgs { for _, pkg := range astPkgs {
for _, fl := range pkg.Files { for _, fl := range pkg.Files {
for nameOfObj, obj := range fl.Scope.Objects { for nameOfObj, obj := range fl.Scope.Objects {
if obj.Name == fmt.Sprint(field.Type) { if pkg.Name+"."+obj.Name == realType {
parseObject(obj, nameOfObj, nm, realTypes, astPkgs, pkg.Name) parseObject(obj, nameOfObj, nm, realTypes, astPkgs, pkg.Name)
} }
} }