我正在使用 axios 发送 http 请求(我也使用了 fetch 但它给出了相同的结果)。
axios.post("http://localhost:3000/login",
{
answer: 42
},
{
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
})
在我的 go 文件中,我正在记录响应
func post(req *http.Request, res http.ResponseWriter) {
req.ParseForm()
fmt.Println(req.Form)
}
日志如下:
map[{"answer":42}:[]]
但是我希望它如下所示:
map["answer":[42]]
(当我使用邮递员时我得到了这样的信息)
这有什么问题。
出站数据供参考
慕婉清6462132
相关分类