在 Negroni 下找不到路由时的服务索引文件

我将 Golang、Negroni 和 Gorilla mux 用于 Web api 服务器。我在 /api 下有我的 api 路由,我正在使用 Negroni 使用 / 下的 URL 从我的 /public 目录中提供静态文件。我想提供我的 index.html 文件(包含单页 javascript 应用程序),不仅如果它是按名称请求或作为索引文件,而且如果请求否则会导致 404,因为它不对应/public 目录中的路由或文件。这是为了让这些 URL 加载 web 应用程序,该应用程序将转换到正确的路由(客户端 javascript 历史记录/pushState),否则如果该资源不存在,则会给出未找到的错误。有没有办法让 Negroni 的静态中间件或 Gorilla mux 做到这一点?


动漫人物
浏览 143回答 1
1回答

波斯汪

将Router在MUX库类型有一个NotFoundHandler类型的字段http.Handler。这将允许您按照您认为合适的方式处理不匹配的路线:// NotFoundHandler overrides the default not found handlerfunc NotFoundHandler(w http.ResponseWriter, r *http.Request) {    // You can use the serve file helper to respond to 404 with    // your request file.    http.ServeFile(w, r, "public/index.html")}func main() {    r := mux.NewRouter()    r.NotFoundHandler = http.HandlerFunc(NotFoundHandler)    // Register other routes or setup negroni    log.Fatal(http.ListenAndServe(":8080", r))} 
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go