在 net/http 中,處理運行時註冊的處理程序需要自訂方法。雖然 HTTP 伺服器提供了註冊處理程序的機制,但它缺乏動態取消註冊處理程序的能力。
要動態建立和註冊處理程序,您可以使用自訂 HandlerFactory。這可以設計為產生具有唯一 ID 的新處理程序並使用 http.Handle 註冊它們。例如,「/create」處理程序可以產生具有遞增 ID 的 MyHandler 實例,並將它們對應到特定的 URL 模式。
<code class="go">type HandlerFactory struct { handler_id int } func (hf *HandlerFactory) ServeHTTP(w http.ResponseWriter, r *http.Request) { hf.handler_id++ handler := MyHandler{hf.handler_id} handle := fmt.Sprintf("/%d/", hf.handler_id) http.Handle(handle, &handler) }</code>
要提供未註冊的處理程序,您需要建立自訂ServerMux,擴充原始ServeMux 並包含取消註冊
<code class="go">type MyMux struct { http.ServeMux mu sync.Mutex } func (mux *MyMux) Deregister(pattern string) error { mux.mu.Lock() defer mux.mu.Unlock() del(mux.m, pattern) // Handle additional error checking or setup here }</code>
要使用此自訂ServerMux,您可以實例化一個新的ServerMux 並使用http.Handler 將其包裝在HTTP 伺服器中:
<code class="go">mux := new(MyMux) mux.Handle("/create", &factory) srv := &http.Server{ Addr: "localhost:8080", Handler: mux, } go srv.ListenAndServe() // Deregister handlers as needed mux.Deregister("/123/*")</code>
這種方法可讓您動態註冊和登出處理程序,提供處理執行時間產生的URL 模式所需的靈活性。
以上是如何在 Go 的 net/http 套件中動態註冊和取消註冊 HTTP 處理程序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!