在fcgi上获取Golang中的GET请求

时间:2014-02-28 15:50:43

标签: post get go

我在Apache下运行我的脚本。我理解如何创建请求,例如:

http.Get(url)

我如何获得GET请求?我真的没有在文档中看到这些信息。提前谢谢!

UPD 例如,我从另一个脚本对我的go脚本执行GET或POST请求。在PHP中我只写$ a = $ _ GET [“param”]。我怎么能在Go中做到这一点?对不起英语不好,顺便说一下

1 个答案:

答案 0 :(得分:1)

您的处理程序传递Request。在该请求中,只要您使用ParseForm解析参数,就会在Form字段中找到参数:

    // Form contains the parsed form data, including both the URL
    // field's query parameters and the POST or PUT form data.
    // This field is only available after ParseForm is called.
    // The HTTP client ignores Form and uses Body instead.
    Form url.Values