从ParseForm的文档中:
[…]当Content-Type不是application / x-www-form-
urlenpred时,不读取请求主体,并且r.PostForm初始化为一个非null的空值。
PostForm自动设置Content-Type,但是现在您必须自己进行设置:
req, err := http.NewRequest("POST", userserviceUrl, strings.NewReader(form.Enpre()))// TODO: handle errorreq.Header.Set("Content-Type", "application/x-www-form-urlenpred")


