package mainimport("github.com/gin-gonic/gin""net/http")funcgetJSON(c *gin.Context){//c.String(http.StatusOK, "小明")//c.JSON(http.StatusOK, gin.H{"name": "小明", "age": 18})//type User struct {// Name string// Age int//}// 自定义返回的字段名成//type User struct {// Name string `json:"name"`// Age int `json:"age"`//}// 如果不想让某个字段返回可以使用 “-”type User struct{Name string`json:"name"`Age int`json:"age"`Password string`json:"-"`}user := User{"小明",18,"123123"}c.JSON(http.StatusOK, user)}funcmain(){router := gin.Default()router.GET("/getJSON", getJSON)router.Run(":9000")}