mirror of
https://github.com/beego/bee.git
synced 2024-11-21 18:40:54 +00:00
fix the typo
This commit is contained in:
parent
763382e4ce
commit
5493f00cd0
@ -71,13 +71,14 @@ func init() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func urlReplace(src string) string {
|
||||
pt := strings.Split(src, "/")
|
||||
for i, p := range pt {
|
||||
if len(p) > 0 {
|
||||
if p[0] == ':' {
|
||||
pt[i] = "{" + p[1:] + "}"
|
||||
} else if p[0] == "?" && p[1] == ":" {
|
||||
} else if p[0] == '?' && p[1] == ':' {
|
||||
pt[i] = "{" + p[2:] + "}"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user