Go 中的 request.param(...) 在哪里

这是我的控制台:


GET http://localhost:8080/api/photos.json?token=ABCDEFGHIJKLMNOPQRSTUVWXYZ


200 OK

    0   

jquery.js (line 8526)

|Params|    Headers    Response    JSON

token   ABCDEFGHIJKLMNOPQRSTUVWXYZ

我在参数选项卡中。我如何访问它,例如将令牌登录到我的终端窗口。


在节点: request.param('token')


守候你守候我
浏览 277回答 2
2回答

慕工程0101907

我想你有一个http.Request. 假设它被称为hr。然后你可以做hr.ParseForm()之后你可以使用hr.Formwhich 定义如下:// 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.Valuesurl.Values地图在哪里:type Values map[string][]string这是使用解析形式的示例,其中我只对给定 name 的第一个值感兴趣:func getFormValue(hr *http.Request, name string) string {    if values := hr.Form[name]; len(values) > 0 {        return values[0]    }    return ""}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go