使用 http.FileServer 提供靜態檔案時,記錄何時對不存在的檔案發出請求通常很重要存在。雖然 http.FileServer 本身不提供此類日誌記錄,但擴展其功能可讓您實現此目標。
要包裝 http.StripPrefix 和 http.FileServer 傳回的處理程序,請建立一個新的 http.Handler 或 http.Handler。處理函數。包裝器將呼叫包裝的處理程序並檢查產生的 HTTP 回應狀態碼。如果它指示錯誤(特別是 HTTP 404 Not Found),它可以記錄該事件。
由於 http.ResponseWriter 不支援讀取回應狀態碼,請為其建立包裝器 (StatusRespWr)。這個包裝器會在寫入時儲存狀態碼。
http.Handler 包裝器的程式碼如下所示:
<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 are error codes log.Printf("Error status code: %d when serving path: %s", srw.status, r.RequestURI) } } }</code>
main 函數可以建立檔案伺服器,包裝它,並註冊它:
<code class="go">http.HandleFunc("/o/", wrapHandler( http.StripPrefix("/o", http.FileServer(http.Dir("/test"))))) panic(http.ListenAndServe(":8181", nil))</code>
請求不存在的檔案時,控制台會產生以下輸出:
2015/12/01 11:47:40 Error status code: 404 when serving path: /o/sub/b.txt2
以上是在 Go 中使用 `http.FileServer` 提供靜態檔案時如何記錄 404 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!