我是 golang 的新手,并尝试使用 httprouter ( https://github.com/julienschmidt/httprouter ) 使用 POST 方法创建 REST API。我正在使用标头为 Content-Type 的简单原始请求:application/json。
我已经努力但没有办法获取原始查询参数。
req.FormValue("name") 或 req.Form.Get("name") 工作正常,但标头为 Content-Type : application/x-www-form-urlencoded
有没有人尝试获取原始查询参数(标头为 Content-Type:application/json)?