使用gorilla / mux为Go提供静态文件

时间:2017-11-30 23:02:12

标签: css go

我正在尝试使用Go提供静态文件,在完成一些教程和其他SO答案(herehere)之后,我已经得到了以下代码。我已经研究了许多其他类似的问题,但答案对我不起作用。我实现的路由与大多数其他问题略有不同,所以我想知道是否存在导致问题的微妙问题,但遗憾的是我的Go技能还不够精确,看不出它是什么。我的代码如下(我已经排除了处理程序的代码,因为它不应该相关)。

router.go

package main

import (
    "net/http"

    "github.com/gorilla/mux"
)

func NewRouter() *mux.Router {
    router := mux.NewRouter().StrictSlash(true)

    for _, route := range routes {
        var handler http.Handler

        handler = route.HandlerFunc
        handler = Logger(handler, route.Name)

        router.
            Methods(route.Method).
            Path(route.Path).
            Name(route.Name).
            Handler(handler)
    }

    // This should work?
    fs := http.FileServer(http.Dir("./static"))
    router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", fs))

    return router
}

routes.go

package main

import (
    "net/http"

    "web-api/app/handlers"
)

type Route struct {
    Name        string
    Method      string
    Path        string
    HandlerFunc http.HandlerFunc
}

type Routes []Route

var routes = Routes{
    Route{
        "Index",
        "GET",
        "/",
        handlers.Index,
    },
    Route{
        "Login",
        "GET",
        "/login",
        handlers.GetLogin,
    },
    Route{
        "Login",
        "POST",
        "/login",
        handlers.PostLogin,
    },
}

main.go

...

func main() {

    router := NewRouter()

    log.Fatal(http.ListenAndServe(":8080", router))
}

我的文件结构设置为:

- app
    - main.go
    - router.go
    - routes.go
    - static/
        - stylesheets/
            - index.css

由于某种原因,浏览器无法访问 localhost:8080 / static / stylesheets / index.css

1 个答案:

答案 0 :(得分:2)

文件路径是相对于当前工作目录的,而不是相对于引用路径的源代码文件。

应用程序的文件服务器配置假定app目录是当前工作目录。在运行应用程序之前将目录更改为app目录。