我在GAE golang中有一个简单的功能:

func Call(c appengine.Context, guid string, function string, parameters map[string]string) string {
    client:=urlfetch.Client(c)
    values := url.Values{}
    c.Infof("%v", parameters)
    for k, v := range parameters {
        values.Set(k, v)
    }
    c.Infof("%v", values)
    resp, err:=client.PostForm("https://blockchain.info/merchant/"+guid+"/"+function, values)
    var answer string
    if err != nil {
        c.Errorf("BlockchainAPI post error: %s", err)
    }
    c.Infof("%v", resp.Request.PostForm)
    [...]

我得到这些打印输出:
2013/10/14 23:17:51 INFO: map[main_password:password]
2013/10/14 23:17:51 INFO: map[main_password:[password]]
2013/10/14 23:17:52 INFO: https://blockchain.info/merchant/guid/function
2013/10/14 23:17:52 INFO: map[]

看来client.PostForm并未将values传递给请求,也没有将其返回给响应。是什么导致此错误?

最佳答案

`client.PostForm`使用主体而不是request.PostForm值。

它在[documentation] [1]中这样说:

 // PostForm contains the parsed form data from POST or PUT
 // body parameters.
 // This field is only available after ParseForm is called.
 // The HTTP client ignores PostForm and uses Body instead.
 PostForm url.Values

因此,您的代码需要更改为:
c.Infof("%v", resp.Request.PostForm)

对于这样的事情(我尚未测试过字符串处理的准确性):
bd,_:= ioUtil.ReadAll(resp.Body)
c.Infof(“%v”,字符串(bd [:len(bd)])

10-07 17:01