mirror of
https://github.com/beego/bee.git
synced 2024-11-21 18:40:54 +00:00
Merge pull request #515 from coseyo/bugfix_path
fix api path contain regex string bug
This commit is contained in:
commit
5c1ee91097
@ -1263,6 +1263,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, "/")
|
||||
|
Loading…
Reference in New Issue
Block a user