Toggle navigation
Haibin's Blog
How to Add a query to URL in go
Posted on December 12, 2017
wURL, _ := url.Parse(str) q := wURL.Query() q.Add("q", "abc") wURL.RawQuery = q.Encode()
← Previous Post
Next Post →