Golang gin 代理处理 svelte 前端和 Golang api
Golang gin proxy to handle svelte frontend and Golang api
我正在尝试使用 Golang 和 gin 为我的 api 和前端编写代理。如果请求转到“/api”以外的任何内容,我想代理到 svelte 服务器。如果出现“/api/something”,我想在杜松子酒中处理它。目前我的代码是这样的。
func proxy(c *gin.Context) {
remote, err := url.Parse("http://localhost:3000")
if err != nil {
panic(err)
}
proxy := httputil.NewSingleHostReverseProxy(remote)
proxy.Director = func(req *http.Request) {
req.Header = c.Request.Header
req.Host = remote.Host
req.URL.Scheme = remote.Scheme
req.URL.Host = remote.Host
req.URL.Path = c.Param("proxyPath")
}
proxy.ServeHTTP(c.Writer, c.Request)
}
func main() {
r := gin.Default()
r.Any("/*proxyPath", proxy)
r.Run(":8080")
}
现在,如果我去 http://localhost:8080
,我会看到我的 svelte 应用程序。但是如果想添加任何其他路线,我会收到一条错误消息 panic: catch-all conflicts with existing handle for the path segment root in path '/*proxyPath'
您可以在 r.NoRoute 中使用 mv proxy func
r.NoRoute(proxy)
我正在尝试使用 Golang 和 gin 为我的 api 和前端编写代理。如果请求转到“/api”以外的任何内容,我想代理到 svelte 服务器。如果出现“/api/something”,我想在杜松子酒中处理它。目前我的代码是这样的。
func proxy(c *gin.Context) {
remote, err := url.Parse("http://localhost:3000")
if err != nil {
panic(err)
}
proxy := httputil.NewSingleHostReverseProxy(remote)
proxy.Director = func(req *http.Request) {
req.Header = c.Request.Header
req.Host = remote.Host
req.URL.Scheme = remote.Scheme
req.URL.Host = remote.Host
req.URL.Path = c.Param("proxyPath")
}
proxy.ServeHTTP(c.Writer, c.Request)
}
func main() {
r := gin.Default()
r.Any("/*proxyPath", proxy)
r.Run(":8080")
}
现在,如果我去 http://localhost:8080
,我会看到我的 svelte 应用程序。但是如果想添加任何其他路线,我会收到一条错误消息 panic: catch-all conflicts with existing handle for the path segment root in path '/*proxyPath'
您可以在 r.NoRoute 中使用 mv proxy func
r.NoRoute(proxy)