Skip to content

响应参数

JSON

go
  router.GET("/json", func(c *gin.Context) {
    c.JSON(200, gin.H{
      "html": "<b>Hello, world!</b>",
    })
  })

AsciiJSON

go
  router.GET("/someJSON", func(c *gin.Context) {
    data := map[string]interface{}{
      "lang": "GO语言",
      "tag":  "<br>",
    }

    // 输出 : {"lang":"GO\u8bed\u8a00","tag":"\u003cbr\u003e"}
    c.AsciiJSON(http.StatusOK, data)
  })

PureJSON

https://gin-gonic.com/zh-cn/docs/examples/pure-json/

go
  router.GET("/purejson", func(c *gin.Context) {
    c.PureJSON(200, gin.H{
      "html": "<b>Hello, world!</b>",
    })
  })

SecureJSON

https://gin-gonic.com/zh-cn/docs/examples/secure-json/

go
  router.GET("/someJSON", func(c *gin.Context) {
    names := []string{"lena", "austin", "foo"}

    // 将输出:while(1);["lena","austin","foo"]
    c.SecureJSON(http.StatusOK, names)
  })