mirror of
https://github.com/astaxie/beego.git
synced 2024-11-17 21:20:54 +00:00
for the root path, all methods must be covered
use continue instead of return
This commit is contained in:
parent
fd733f76f0
commit
8d59e7afd1
14
app.go
14
app.go
@ -226,7 +226,7 @@ func UnregisterFixedRoute(fixedRoute string, method string) *App {
|
||||
}
|
||||
if BeeApp.Handlers.routers[m].prefix == strings.Trim(fixedRoute, "/ ") {
|
||||
findAndRemoveSingleTree(BeeApp.Handlers.routers[m])
|
||||
return BeeApp
|
||||
continue
|
||||
}
|
||||
findAndRemoveTree(subPaths, BeeApp.Handlers.routers[m], m)
|
||||
}
|
||||
@ -273,18 +273,18 @@ func findAndRemoveTree(paths []string, entryPointTree *Tree, method string) {
|
||||
}
|
||||
|
||||
func findAndRemoveSingleTree(entryPointTree *Tree) {
|
||||
|
||||
if len(entryPointTree.fixrouters) > 0 {
|
||||
// Remove the *Tree from the fixrouters slice
|
||||
entryPointTree.fixrouters[0] = nil
|
||||
entryPointTree.fixrouters = entryPointTree.fixrouters[1:]
|
||||
if entryPointTree == nil {
|
||||
return
|
||||
}
|
||||
|
||||
if len(entryPointTree.fixrouters) > 0 {
|
||||
// If the route had children subtrees, remove just the functional leaf,
|
||||
// to allow children to function as before
|
||||
if len(entryPointTree.leaves) > 0 {
|
||||
entryPointTree.leaves[0] = nil
|
||||
entryPointTree.leaves = entryPointTree.leaves[1:]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Include will generate router file in the router/xxx.go from the controller's comments
|
||||
// usage:
|
||||
|
Loading…
Reference in New Issue
Block a user