Google App Engine Go的PostForm方法为什么不发送任何url.Values?

huangapple go评论80阅读模式
英文:

Google App Engine Go PostForm not sending any url.Values?

问题

我在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:
		
输入密码查看隐藏内容

] 2013/10/14 23:17:52 INFO: https://blockchain.info/merchant/guid/function 2013/10/14 23:17:52 INFO: map[]

看起来client.PostForm没有将values传递给请求,也没有在响应中获取它们。这可能是什么原因导致的错误?

英文:

I have a simple function in 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)
    [...]

I get these printouts:

2013/10/14 23:17:51 INFO: map[main_password:password]
2013/10/14 23:17:51 INFO: map[main_password:
		
输入密码查看隐藏内容

] 2013/10/14 23:17:52 INFO: https://blockchain.info/merchant/guid/function 2013/10/14 23:17:52 INFO: map[]

It looks as if client.PostForm does not pass values to the request and not get them back in response. What can be causing this error?

答案1

得分: 1

client.PostForm使用的是请求的Body而不是request.PostForm的值。

文档中有这样的说明:

 // PostForm包含来自POST或PUT请求的解析表单数据
 // body参数。
 // 只有在调用ParseForm之后,该字段才可用。
 // HTTP客户端忽略PostForm并使用Body。
 PostForm url.Values

所以你的代码需要做出改变,从:

c.Infof("%v", resp.Request.PostForm)

改为类似下面的代码(我没有在字符串处理方面进行准确性测试):

bd, _ := ioUtil.ReadAll(resp.Body)
c.Infof("%v", string(bd[:len(bd)]))
英文:

<p>client.PostForm uses the body not the request.PostForm values.</p>
<p>It says so in the documentation :</p>

 // 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

<p>So your code needs to change from:</p>
c.Infof("%v", resp.Request.PostForm)

<p>To something like this (I haven't tested it for accuracy in the string handling):
bd, _ := ioUtil.ReadAll(resp.Body)
c.Infof("%v", string(bd[:len(bd)])
</p>

huangapple
  • 本文由 发表于 2013年10月15日 14:24:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/19374548.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定