(param string)
| 28 | } |
| 29 | |
| 30 | func RawEncode(param string) string { |
| 31 | return strings.Replace(url.QueryEscape(param), "+", "%20", -1) |
| 32 | } |
| 33 | |
| 34 | func RawDecode(param string) string { |
| 35 | ret, err := url.QueryUnescape(strings.Replace(param, "%20", "+", -1)) |