本文整理匯總了Golang中github.com/gorilla/pat.Router.NotFoundHandler方法的典型用法代碼示例。如果您正苦於以下問題:Golang Router.NotFoundHandler方法的具體用法?Golang Router.NotFoundHandler怎麽用?Golang Router.NotFoundHandler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/gorilla/pat.Router
的用法示例。
在下文中一共展示了Router.NotFoundHandler方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Register
// Register creates routes for each static resource
func Register(config render.Config, r *pat.Router) {
log.Debug("registering not found handler for static package", nil)
r.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
render.HTML(w, http.StatusNotFound, "error", render.DefaultVars(req, map[string]interface{}{"error": "Page not found"}))
})
log.Debug("registering static content handlers for static package", nil)
for _, file := range config.AssetNames()() {
if strings.HasPrefix(file, "static/") {
path := strings.TrimPrefix(file, "static")
log.Trace("registering handler for static asset", log.Data{"path": path})
var mimeType string
switch {
case strings.HasSuffix(path, ".css"):
mimeType = "text/css"
case strings.HasSuffix(path, ".js"):
mimeType = "application/javascript"
default:
mimeType = mime.TypeByExtension(path)
}
log.Trace("using mime type", log.Data{"type": mimeType})
r.Path(path).Methods("GET").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
if b, err := config.Asset()("static" + path); err == nil {
w.Header().Set("Content-Type", mimeType)
w.Header().Set("Cache-control", "public, max-age=259200")
w.WriteHeader(200)
w.Write(b)
return
}
// This should never happen!
log.ErrorR(req, errors.New("it happened ¯\\_(ツ)_/¯"), nil)
r.NotFoundHandler.ServeHTTP(w, req)
})
}
}
}