68

Go Web サーバーで URL をルーティングするために、Gorilla ツールキットのmuxパッケージを使用しようとしています。この質問をガイドとして使用すると、次の Go コードがあります。

func main() {
    r := mux.NewRouter()
    r.Handle("/", http.FileServer(http.Dir("./static/")))
    r.HandleFunc("/search/{searchTerm}", Search)
    r.HandleFunc("/load/{dataId}", Load)
    http.Handle("/", r)
    http.ListenAndServe(":8100", nil)
}

ディレクトリ構造は次のとおりです。

...
main.go
static\
  | index.html
  | js\
     | <js files>
  | css\
     | <css files>

Javascript および CSS ファイルは、次のindex.htmlように参照されます。

...
<link rel="stylesheet" href="css/redmond/jquery-ui.min.css"/>
<script src="js/jquery.min.js"></script>
...

http://localhost:8100Web ブラウザーでアクセスすると、index.htmlコンテンツは正常に配信されますが、すべてのjsおよびcssURL が 404 を返します。

staticサブディレクトリからファイルを提供するようにプログラムを取得するにはどうすればよいですか?

4

5 に答える 5

97

私はあなたが探しているかもしれないと思うPathPrefix...

func main() {
    r := mux.NewRouter()
    r.HandleFunc("/search/{searchTerm}", Search)
    r.HandleFunc("/load/{dataId}", Load)
    r.PathPrefix("/").Handler(http.FileServer(http.Dir("./static/")))
    http.ListenAndServe(":8100", r)
}
于 2013-04-05T13:26:07.310 に答える
49

多くの試行錯誤の後、上記の両方の回答が、私にとって何がうまくいくかを考え出すのに役立ちました。Web アプリのルート ディレクトリに静的フォルダーがあります。

それに加えて、ルートを再帰的に機能させるためPathPrefixに使用する必要がありました。StripPrefix

package main

import (
    "log"
    "net/http"
    "github.com/gorilla/mux"
)

func main() {
    r := mux.NewRouter()
    s := http.StripPrefix("/static/", http.FileServer(http.Dir("./static/")))
    r.PathPrefix("/static/").Handler(s)
    http.Handle("/", r)
    err := http.ListenAndServe(":8081", nil)
}

問題を抱えている他の誰かに役立つことを願っています。

于 2015-05-29T11:44:27.967 に答える
10

ここにこのコードがあります。これは非常にうまく機能し、再利用可能です。

func ServeStatic(router *mux.Router, staticDirectory string) {
    staticPaths := map[string]string{
        "styles":           staticDirectory + "/styles/",
        "bower_components": staticDirectory + "/bower_components/",
        "images":           staticDirectory + "/images/",
        "scripts":          staticDirectory + "/scripts/",
    }
    for pathName, pathValue := range staticPaths {
        pathPrefix := "/" + pathName + "/"
        router.PathPrefix(pathPrefix).Handler(http.StripPrefix(pathPrefix,
            http.FileServer(http.Dir(pathValue))))
    }
}
router := mux.NewRouter()
ServeStatic(router, "/static/")
于 2015-06-03T12:47:58.623 に答える
4

これを試して:

fileHandler := http.StripPrefix("/static/", http.FileServer(http.Dir("/absolute/path/static")))
http.Handle("/static/", fileHandler)
于 2013-04-05T13:17:08.933 に答える
-1

これにより、フォルダー フラグ内のすべてのファイルが提供され、ルートで index.html が提供されます。

使用法

   //port default values is 8500
   //folder defaults to the current directory
   go run main.go 

   //your case, dont forget the last slash
   go run main.go -folder static/

   //dont
   go run main.go -folder ./

コード

    package main

import (
    "flag"
    "fmt"
    "net/http"
    "os"
    "strconv"
    "strings"

    "github.com/gorilla/handlers"
    "github.com/gorilla/mux"
    "github.com/kr/fs"
)

func main() {
    mux := mux.NewRouter()

    var port int
    var folder string
    flag.IntVar(&port, "port", 8500, "help message for port")
    flag.StringVar(&folder, "folder", "", "help message for folder")

    flag.Parse()

    walker := fs.Walk("./" + folder)
    for walker.Step() {
        var www string

        if err := walker.Err(); err != nil {
            fmt.Fprintln(os.Stderr, "eroooooo")
            continue
        }
        www = walker.Path()
        if info, err := os.Stat(www); err == nil && !info.IsDir() {
            mux.HandleFunc("/"+strings.Replace(www, folder, "", -1), func(w http.ResponseWriter, r *http.Request) {
                http.ServeFile(w, r, www)
            })
        }
    }
    mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        http.ServeFile(w, r, folder+"index.html")
    })
    http.ListenAndServe(":"+strconv.Itoa(port), handlers.LoggingHandler(os.Stdout, mux))
}
于 2016-05-21T18:36:55.393 に答える