如何使 fmt.Sprint spring 为 URL 中的参数工作?

我有一个反向代理,它从第 3 方 API 返回正文响应。这个第 3 方 API 使用分页,所以我的反向代理路径需要页码参数。


我无法fmt.Sprint将参数从反向代理 URL 传递到 3rd Party API 请求。


func (s *Server) getReverseProxy(w http.ResponseWriter, r *http.Request) {

    keys, ok := r.URL.Query()["page"]


    if !ok || len(keys[0]) < 1 {

        log.Println("Url Param 'page' is missing")

        return

    }


    // Query()["key"] will return an array of items,

    // we only want the single item.

    key := keys[0]


    log.Println("Url Param 'page' is: " + string(key))


    // create http client to make GET request to reverse-proxy

    client := &http.Client{}


    // create 3rd party request


    // creating this request is causing me the issue due to the page parameter 

    req, err := http.NewRequest("GET", fmt.Sprint("https://url.com/path?&page%5Bsize%5D=100&page%5Bnumber%5D=%s\n", key), nil)


    // more stuff down here but omitted for brevity.

}

查看第http.NewRequest3 方 api 请求,该%s\n部分将是它们key传递给page parameter.


如何正确将此变量传递给 url?在 python 中,我希望使用的是 f 字符串。不确定我是否正确地为 Go 做这件事。


饮歌长啸
浏览 93回答 1
1回答

牛魔王的故事

您可能应该使用net/url包构建 URL 和查询。这样做的好处是更安全。params := url.Values{&nbsp; &nbsp; "page[size]":&nbsp; &nbsp; &nbsp; &nbsp; []string{"100"},&nbsp; &nbsp; "page[" + key + "]": []string{"1"},}u := &url.URL{&nbsp; &nbsp; Scheme:&nbsp; &nbsp;"https",&nbsp; &nbsp; Host:&nbsp; &nbsp; &nbsp;"url.com",&nbsp; &nbsp; Path:&nbsp; &nbsp; &nbsp;"/path",&nbsp; &nbsp; RawQuery: params.Encode(),}req, err := http.NewRequest("GET", u.String(), nil)尝试使用fmt.Sprintf()构造 URL 更有可能适得其反。如果要使用 构造 URL fmt.Sprintf,则需要转义%格式字符串中的所有 ,并转义参数中的特殊字符。fmt.Sprint("https://url.com/path?&page%%5Bsize%%5D=100&page%%5B%s%%5D=1",&nbsp; &nbsp; url.QueryEscape(key))该url.QueryEscape()函数对字符串中的字符进行转义,以便可以安全地将其放置在 URL 查询中。如果您使用url.Values和构造 URL,则没有必要url.URL。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go