mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:00:54 +00:00
make golint happy staticfile.go
This commit is contained in:
parent
b2048e8653
commit
8615f875f8
@ -40,15 +40,13 @@ func serverStaticRouter(ctx *context.Context) {
|
|||||||
if utils.FileExists(file) {
|
if utils.FileExists(file) {
|
||||||
http.ServeFile(ctx.ResponseWriter, ctx.Request, file)
|
http.ServeFile(ctx.ResponseWriter, ctx.Request, file)
|
||||||
return
|
return
|
||||||
} else {
|
|
||||||
i++
|
|
||||||
if i == len(StaticDir) {
|
|
||||||
http.NotFound(ctx.ResponseWriter, ctx.Request)
|
|
||||||
return
|
|
||||||
} else {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
i++
|
||||||
|
if i == len(StaticDir) {
|
||||||
|
http.NotFound(ctx.ResponseWriter, ctx.Request)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
if strings.HasPrefix(requestPath, prefix) {
|
if strings.HasPrefix(requestPath, prefix) {
|
||||||
if len(requestPath) > len(prefix) && requestPath[len(prefix)] != '/' {
|
if len(requestPath) > len(prefix) && requestPath[len(prefix)] != '/' {
|
||||||
|
Loading…
Reference in New Issue
Block a user