修复aksk query参数顺序未按字母排序问题

This commit is contained in:
Liujian
2024-12-22 22:28:44 +08:00
parent 4835b678fa
commit d7e2d87d61
5 changed files with 127 additions and 62 deletions

View File

@@ -69,7 +69,7 @@ func (ur *URIRequest) GetQuery(key string) string {
}
func (ur *URIRequest) RawQuery() string {
return string(ur.uri.QueryArgs().String())
return ur.uri.QueryArgs().String()
}
func (ur *URIRequest) SetPath(s string) {