Gin AsciiJSON

使用 ​AsciiJSON生成具有转义的非 ​ASCII字符的 ​ASCII-only JSON

func main() {
	r := gin.Default()

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

		// 输出 : {"lang":"GOu8bedu8a00","tag":"u003cbru003e"}
		c.AsciiJSON(http.StatusOK, data)
	})

	// 监听并在 0.0.0.0:8080 上启动服务
	r.Run(":8080")
}

作者:冒牌SEO,如若转载,请注明出处:https://www.web176.com/gin-3/24740.html

(0)
打赏 支付宝 支付宝 微信 微信
冒牌SEO冒牌SEO
上一篇 2023年7月25日
下一篇 2023年7月25日

相关推荐

发表回复

登录后才能评论