Skip to content

Latest commit

 

History

History

middleware

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Sử dụng middleware

  1. Đăng kí hàm xử lý request
func logTime(c *gin.Context) {
    log.Println("Current time:", time.Now())
    // Gọi hàm xử lý tiếp theo trong chuỗi middleware
	c.Next()
}
  1. Đăng kí middleware cho từng route
router := gin.Default()
router.LoadHTMLGlob("view/*.html")

router.GET("/", homePage)

// Đầu tiên chạy hàm logTime, trong logTime gọi c.Next() để gọi tiếp đến homePage
router.GET("/about", logTime, aboutPage)