array format

This commit is contained in:
zhangyanzhe 2017-07-19 14:47:19 +08:00
parent 254174eda6
commit 2b04261f9c
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ func parserComments(f *ast.FuncDecl, controllerName, pkgpath string) error {
typ := pp[len(pp)-1]
if len(pp) >= 2 {
isArray := false
if p[1] == "body" || p[1] == "formData" || strings.HasPrefix(p[2], "[]") {
if (p[1] == "body" || p[1] == "formData") && strings.HasPrefix(p[2], "[]") {
p[2] = p[2][2:]
isArray = true
}