6
请求中带有数组,如:GET /book/add?name=a&name=b&name=c,解析报错。 看了下源码,解析参数时使用了如下函数:
type Values map[string][]string
// Get gets the first value associated with the given key.
// If there are no values associated with the key, Get returns
// the empty string. To access multiple values, use the map
// directly.
func (v Values) Get(key string) string {
if v == nil {
return ""
}
vs := v[key]
if len(vs) == 0 {
return ""
}
return vs[0]
}
请问之后会解决这个问题吗?如果解决的话会在多久之后的版本呢?