fix api path contain regex string bug

This commit is contained in:
zhongyijun 2018-03-23 14:29:39 +08:00
parent e90da8f77b
commit cb47a5a5fe
1 changed files with 6 additions and 0 deletions

View File

@ -1100,6 +1100,12 @@ func urlReplace(src string) string {
} else if p[0] == '?' && p[1] == ':' {
pt[i] = "{" + p[2:] + "}"
}
if pt[i][0] == '{' && strings.Contains(pt[i], ":") {
pt[i] = pt[i][:strings.Index(pt[i], ":")] + "}"
} else if pt[i][0] == '{' && strings.Contains(pt[i], "(") {
pt[i] = pt[i][:strings.Index(pt[i], "(")] + "}"
}
}
}
return strings.Join(pt, "/")