-
Notifications
You must be signed in to change notification settings - Fork 8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can suport domain router? like github.com/gorilla/mux #4037
Comments
gorilla/mux r.Host("{subdomain:[a-z]+}.example.com") |
r.HandleFunc("/products", ProductsHandler). |
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
r := gin.Default()
api := r.Group("/api")
api.GET("/users/{id}", func(ctx *gin.Context) {
ctx.JSON(http.StatusOK, gin.H{
"message": "hello world",
})
})
if err := r.Run(":8080"); err != nil {
panic(err)
}
} Is this what you want? |
不是 ,域名 的英文 不认识吗??写了 host domain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can suport domain router? like github.com/gorilla/mux
Matching Routes
Routes can also be restricted to a domain or subdomain. Just define a host pattern to be matched. They can also have variables:
r := mux.NewRouter()
// Only matches if domain is "www.example.com".
r.Host("www.example.com")
// Matches a dynamic subdomain.
r.Host("{subdomain:[a-z]+}.example.com")
There are several other matchers that can be added. To match path prefixes:
r.PathPrefix("/products/")
The text was updated successfully, but these errors were encountered: