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:
parent
bbc43520fb
commit
a96acf6eed
@ -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, `<>`)
|
||||
|
Loading…
x
Reference in New Issue
Block a user