1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

improve dump feature for package gutil

This commit is contained in:
John Guo 2021-11-22 23:05:32 +08:00
parent bbc43520fb
commit a96acf6eed

View File

@ -122,11 +122,7 @@ func doDump(value interface{}, indent string, buffer *bytes.Buffer, option doDum
doDumpString(exportInternalInput)
case reflect.Bool:
if reflectValue.Bool() {
buffer.WriteString(`true`)
} else {
buffer.WriteString(`false`)
}
doDumpBool(exportInternalInput)
case
reflect.Int,
@ -357,6 +353,19 @@ func doDumpString(in doDumpInternalInput) {
}
}
func doDumpBool(in doDumpInternalInput) {
var s string
if in.ReflectValue.Bool() {
s = `true`
} else {
s = `false`
}
if in.Option.WithType {
s = fmt.Sprintf(`bool(%s)`, s)
}
in.Buffer.WriteString(s)
}
func doDumpDefault(in doDumpInternalInput) {
s := fmt.Sprintf("%v", in.Value)
s = gstr.Trim(s, `<>`)