比如下面的代码,在返回 {"hello":"world"} 之后如何停止本次请求,即使是在这个返回后面加上 c.Abort() 也是无效的,因为这个 Abort 断开的应该是 handler 的链路,对于调用 Abort 的 handler 中后续的逻辑是没有影响的。
func main() {
router := gin.Default()
router.GET("/hello", Hello)
router.Run(":9999")
}
func Hello(ctx *gin.Context) {
ctx.JSON(200, gin.H{
"hello":"world",
})
ctx.JSON(500, gin.H{
"no":"no",
})
}