| 12345678910111213141516171819202122232425262728 |
- package middleware
- import (
- "log"
- "time"
- "github.com/gin-contrib/cors"
- "github.com/gin-gonic/gin"
- )
- func Logger() gin.HandlerFunc {
- return func(c *gin.Context) {
- start := time.Now()
- //继续调用后续的中间件处理函数
- c.Next()
- log.Printf("[GIN] %s %s %d %s",
- c.Request.Method, c.Request.URL.Path, c.Writer.Status(), time.Since(start))
- }
- }
- func CORS() gin.HandlerFunc {
- return cors.New(cors.Config{
- AllowOrigins: []string{"*"},
- AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
- AllowHeaders: []string{"Origin", "Content-Type", "Accept"},
- AllowCredentials: false,
- })
- }
|