小编典典

设置杜松子酒找不到的路线

go

我在Gin中设置了默认路由器和一些路由:

router := gin.Default()
router.POST("/users", save)
router.GET("/users",getAll)

但是我该如何处理杜松子酒中找不到404路线?

最初,我使用的是了解Gin所用的httprouter,所以这就是我最初拥有的…

router.NotFound = http.HandlerFunc(customNotFound)

和功能:

func customNotFound(w http.ResponseWriter, r *http.Request) {
    //return JSON
    return
}

但这对杜松子酒不起作用。

我需要能够使用返回JSON,c *gin.Context这样我才能使用:

c.JSON(404, gin.H{"code": "PAGE_NOT_FOUND", "message": "Page not found"})

阅读 203

收藏
2020-07-02

共1个答案

小编典典

您正在寻找的是NoRoute处理程序。

更确切地说:

r := gin.Default()

r.NoRoute(func(c *gin.Context) {
    c.JSON(404, gin.H{"code": "PAGE_NOT_FOUND", "message": "Page not found"})
})
2020-07-02