1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 01:04:13 +00:00

Merge pull request #1575 from youngsterxyf/develop

simplify the implementation of splitPath in tree.go
This commit is contained in:
astaxie 2016-01-18 16:33:23 +08:00
commit 4b52a38183

10
tree.go
View File

@ -448,17 +448,11 @@ func (leaf *leafInfo) match(wildcardValues []string, ctx *context.Context) (ok b
// "/admin/" -> ["admin"]
// "/admin/users" -> ["admin", "users"]
func splitPath(key string) []string {
key = strings.Trim(key, "/ ")
if key == "" {
return []string{}
}
elements := strings.Split(key, "/")
if elements[0] == "" {
elements = elements[1:]
}
if elements[len(elements)-1] == "" {
elements = elements[:len(elements)-1]
}
return elements
return strings.Split(key, "/")
}
// "admin" -> false, nil, ""