mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
18 lines
355 B
Go
18 lines
355 B
Go
|
package route
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
|
||
|
"github.com/go-chi/chi"
|
||
|
)
|
||
|
|
||
|
// When name is composed of a partial escape string, Golang does not unescape it
|
||
|
func getEscapeParam(r *http.Request, paramName string) string {
|
||
|
param := chi.URLParam(r, paramName)
|
||
|
if newParam, err := url.PathUnescape(param); err == nil {
|
||
|
param = newParam
|
||
|
}
|
||
|
return param
|
||
|
}
|