`http.HandleFunc` 패턴에 와일드카드를 사용할 수 있나요?

DDD
풀어 주다: 2024-11-24 09:37:10
원래의
369명이 탐색했습니다.

Can You Use Wildcards in `http.HandleFunc` Patterns?

HTTP 서버의 핸들러 패턴

http.HandleFunc를 활용할 때 와일드카드를 패턴에 통합할 수 있는지에 대한 의문이 생깁니다. 예를 들어 별표()가 유효한 URL 세그먼트를 나타내는 "/groups//people"과 같은 패턴을 원할 수 있습니다.

HTTP 핸들러 패턴 제한

안타깝게도 http.Handler 패턴은 정규 표현식이나 glob이 아니므로 와일드카드를 직접 사용할 수 없습니다.

패턴 유연성을 위한 사용자 정의 핸들러

이러한 제한을 극복하려면 정규식이나 기타 원하는 패턴을 활용하는 사용자 정의 HTTP 핸들러를 생성하는 것을 고려해 보십시오. 다음은 정규 표현식의 예입니다.

import (
    "net/http"
    "regexp"
)

type RegexpHandler struct {
    routes []*route
}
type route struct {
    pattern *regexp.Regexp
    handler http.Handler
}

// Register handlers with custom patterns
func (h *RegexpHandler) Handler(pattern *regexp.Regexp, handler http.Handler) {
    h.routes = append(h.routes, &route{pattern, handler})
}
func (h *RegexpHandler) HandleFunc(pattern *regexp.Regexp, handler func(http.ResponseWriter, *http.Request)) {
    h.routes = append(h.routes, &route{pattern, http.HandlerFunc(handler)})
}

// Process HTTP requests and route to appropriate handler based on custom patterns
func (h *RegexpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    for _, route := range h.routes {
        if route.pattern.MatchString(r.URL.Path) {
            route.handler.ServeHTTP(w, r)
            return
        }
    }
    // No pattern matched, return 404
    http.NotFound(w, r)
}

func NewRegexpHandler() *RegexpHandler {
    return &RegexpHandler{routes: make([]*route, 0)}
}
로그인 후 복사

이 핸들러를 사용하면 사용자 정의 패턴과 핸들러를 등록할 수 있어 보다 동적인 방식으로 URL을 일치시킬 수 있는 유연성을 제공합니다. 기본 HTTP 서버와 완벽하게 통합될 수 있습니다:

http.Handle("/", NewRegexpHandler())
로그인 후 복사

위 내용은 `http.HandleFunc` 패턴에 와일드카드를 사용할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿