duanliang9288 2015-06-05 09:04 采纳率: 100%
浏览 499
已采纳

Golang:将URL作为GET参数传递

I want to get an URL as a get aparameter

ex: example.com?domain=site.come?a=val&b=val

the problem when i use

query := r.URL.Query()
domain := query.Get("domain") 

to get the domain name it give just domain=site.come?a=val

I think because when the r.URL.Query() meet & it consider it as a new parameter

does anyone know how can I solve this problem

Thank you in advance.

  • 写回答

1条回答 默认 最新

  • dongtanliefang8765 2015-06-05 09:13
    关注

    You need to URL-Encode your query string, like this:

    package main
    
    import (
        "fmt"
        "net/url"
    )
    
    func main() {
        query := make(url.Values)
        query.Add("domain", "example.com?foo=bar")
    
        fmt.Println(query.Encode())
    }
    

    Which outputs domain=example.com%3Ffoo%3Dbar.

    You can set that string as a RawQuery of an url.URL value and if you then access the query like you did, it will have the correct value.

    If the URL is correctly encoded then you should be able to run the following code with your URL value and get the correct result:

    package main
    
    import (
        "fmt"
        "net/url"
    )
    
    func main() {
        query := make(url.Values)
        query.Add("domain", "example.com?foo=bar&abc=123&jkl=qwe")
    
        url := &url.URL{RawQuery: query.Encode(), Host: "domain.com", Scheme: "http"}
        fmt.Println(url.String())
    
        abc := url.Query().Get("domain")
        fmt.Println(abc)
    }
    

    This prints:

    http://domain.com?domain=example.com%3Ffoo%3Dbar%26abc%3D123%26jkl%3Dqwe
    

    (the complete URI with the encoded parameter called "domain")

    example.com?foo=bar&abc=123&jkl=qwe
    

    (the decoded value of said parameter)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启