Golang在服务器运行时获取404

时间:2019-02-14 12:52:24

标签: http go gorilla mux

按照教程,我正在尝试使用Golang和路由包Gorilla / mux运行一个基本的Web应用程序。服务器运行正常,但是无论我在浏览器中放置什么内容,它都拒绝找到index.html文件,始终返回404。

代码如下:

main.go

    package main

    import (
    "database/sql"
    "fmt"
    "net/http"

    "github.com/gorilla/mux"
    _ "github.com/lib/pq"
    )

    const (
    host     = "localhost"
    port     = 5432
    user     = "postgres"
    password = "0102"
    dbname   = "bird_encyclopaedia"
)

func newRouter() *mux.Router {
    r := mux.NewRouter()
    r.HandleFunc("/hello", handler).Methods("GET")


    staticFileDirectory := http.Dir("./assets/")
    staticFileHandler := http.StripPrefix("/assets/", http.FileServer(staticFileDirectory))
    r.PathPrefix("/assets/").Handler(staticFileHandler).Methods("GET")

    r.HandleFunc("/bird", getBirdHandler).Methods("GET")
    r.HandleFunc("/bird", createBirdHandler).Methods("POST")
    return r
}

func main() {
    fmt.Println("Starting server dickface...")
    connString := fmt.Sprintf("host=%s port=%d user=%s "+
        "password=%s dbname=%s sslmode=disable",
        host, port, user, password, dbname)
    db, err := sql.Open("postgres", connString)

    if err != nil {
        panic(err)
    }
    err = db.Ping()

    if err != nil {
        panic(err)
    }

    InitStore(&dbStore{db: db})

    r := newRouter()
    fmt.Println("Serving on port 8080")
    http.ListenAndServe(":8080", r)
}

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello World!")
}

该html文件仅位于assets / index.html目录中,如果需要的话,我可以提供该文件,但我看不到实际的html中存在问题吗?

我已经遍历了很多遍代码,无法看到为什么服务器无法找到目录。我尝试了localhost / 8080 / assets,localhost / 8080 / assets / index.html,localhost / 8080和所有其他变体。

如果我用/ hello附加它,它将返回main.go中显示的Hello世界 如果我将它附加/ bird,它将返回“ null”而不是404。

1 个答案:

答案 0 :(得分:1)

您不需要http.StripPrefix(),因为您没有在URL中使用assets


只需更改这两行:

staticFileHandler := http.StripPrefix("/assets/", http.FileServer(staticFileDirectory))
r.PathPrefix("/assets/").Handler(staticFileHandler).Methods("GET")

staticFileHandler := http.FileServer(staticFileDirectory)
r.PathPrefix("/").Handler(staticFileHandler).Methods("GET")