0

我在 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给请求,也没有让它们返回响应。什么可能导致此错误?

4

1 回答 1

1

`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", string(bd[:len(bd) ])

于 2013-10-15T14:06:29.760 回答