QueryEscape code is very simple func encodeURIComponent(str string) string { r := url.QueryEscape(str) r = strings.Replace(r, "+", "%20", -1) return r }.
確定! 回上一頁