go 接收前端数据

1,前端GET请求,接收值方式

good_id := context.Query("good_id")

2,前端POST请求

       Content-Type的类型

        multipart/form-data  application/x-www-form-urlencoded 

​       上边这两种类型接收值的方式

good_id := context.PostForm("good_id")
goods_name := context.DefaultPostForm("goods_name","默认值") //设置默认值

        application/json‌:用于JSON数据格式。

	param := make(map[string]interface{})
	err := context.ShouldBind(&param)

 定义结构体绑定

type Query struct {
	GoodId int `json:"good_id"`
}


query:=&Query{}
err := context.BindJSON(&query)

上一篇:Redis缓存应用场景【Redis场景上篇】-2.缓存异步场景