修复一处bug

This commit is contained in:
TOP糯米 2023-03-27 21:44:31 +08:00
parent 9000c53f0e
commit b382647d78
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ func MakeSign(obj interface{}, privateKey string) string {
var currentValue reflect.Value var currentValue reflect.Value
for j := 0; j < keysCount; j++ { for j := 0; j < keysCount; j++ {
currentKey = strings.ToLower(keys[j]) currentKey = strings.ToLower(keys[j])
if currentKey == "sign" {
continue
}
currentValue = valueOfObj.FieldByName(keys[j]) currentValue = valueOfObj.FieldByName(keys[j])
str = fmt.Sprintf("%s%s=%v&", str, currentKey, currentValue) str = fmt.Sprintf("%s%s=%v&", str, currentKey, currentValue)
} }