記錄Http.FileServer 的404 錯誤
使用http.FileServer 提供文件時,記錄所要求文件的實例可能很有用不存在,導致404 狀態代碼。但是,預設的 http.FileServer 處理程序不提供此功能。
擴充功能
要記錄 404 錯誤,您可以擴充 http.FileServer 的功能處理程式。這可以透過使用自訂 http.Handler 或 http.HandlerFunc 包裝處理程序來實現。
包裝處理程序
包裝處理程序將呼叫原始 http.FileServer處理程序,然後檢查 HTTP 回應狀態碼。如果是錯誤(特別是 404 Not Found),它可以適當地記錄錯誤。
回應狀態碼包裝器
由於 http.ResponseWriter 不支援讀取直接回應狀態碼,您可以建立包裝器,在設定時儲存狀態碼。
<code class="go">type StatusRespWr struct { http.ResponseWriter // Embeds http.ResponseWriter status int } func (w *StatusRespWr) WriteHeader(status int) { w.status = status // Store the status for later use w.ResponseWriter.WriteHeader(status) }</code>
Handler Wrapper
將回應狀態碼包裝器地方,您可以建立一個記錄錯誤的處理程序包裝器:
<code class="go">func wrapHandler(h http.Handler) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { srw := &StatusRespWr{ResponseWriter: w} h.ServeHTTP(srw, r) if srw.status >= 400 { // 400+ codes indicate errors log.Printf("Error status code: %d when serving path: %s", srw.status, r.RequestURI) } } }</code>
註冊包裝的處理程序
最後,您可以將包裝的處理程序註冊為您的路由中的路由HTTP 伺服器:
<code class="go">http.HandleFunc("/o/", wrapHandler(http.FileServer(http.Dir("/test"))))</code>
範例輸出
當請求不存在的檔案時,包裝的處理程序會在控制台記錄錯誤訊息:
2015/12/01 11:47:40 Error status code: 404 when serving path: /o/sub/b.txt2
以上是在 Go 中使用「http.FileServer」提供檔案時如何記錄 404 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!