修复一处bug
This commit is contained in:
parent
9000c53f0e
commit
b382647d78
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue