// From net/url
type URL struct {
Scheme string
Opaque string // encoded opaque data
User *Userinfo // username and password information
Host string // host or host:port
Path string
RawQuery string // encoded query values, without '?'
Fragment string // fragment for references, without '#'
}
- 为什么 ?
- 如何从 URL 中提取矩阵参数?
request.URL.RawQuery
什么时候应该使用它们而不是使用URL 部分中嵌入的请求参数?