为什么会请求体会有多余的信息? 测试代码: func httpPostJson() { jsonStr := "{\"name\":\"requests_post_test\"}" req := requests.Requests() req.Proxy("http://127.0.0.1:8083") resp, _ := req.PostJson("https://www.httpbin.org/post", jsonStr) println(resp.Text()) } 
为什么会请求体会有多余的信息?

测试代码:
func httpPostJson() {
jsonStr := "{"name":"requests_post_test"}"
req := requests.Requests()
req.Proxy("http://127.0.0.1:8083")
resp, _ := req.PostJson("https://www.httpbin.org/post", jsonStr)
println(resp.Text())
}