SecureJSON
SecureJSON メソッドを使うことで、JSON ハイジャックを防げます。与えられた構造体が Array であれば、
デフォルトで "while(1),"
がレスポンスに含まれます。
func main() {
r := gin.Default()
// 別の prefix を使うこともできます
// r.SecureJsonPrefix(")]}',\n")
r.GET("/someJSON", func(c *gin.Context) {
names := []string{"lena", "austin", "foo"}
// while(1);["lena","austin","foo"] が出力されます。
c.SecureJSON(http.StatusOK, names)
})
// 0.0.0.0:8080 でサーバーを立てます。
r.Run(":8080")
}
最終更新 04.03.2019: Update japanese docs adjusted to hugo's format (#50) (2462cdd)