也造了一個 dump 的小輪子

zhr發表於2019-03-14

先上個示例

aInt := 1
bStr := `sf`
cMap := map[string]interface{}{"name": "z", "age": 14}
dArray := []interface{}{&cMap, aInt, bStr}
c := cMap

p.Dump(aInt, &aInt, &bStr, bStr, cMap, dArray, c, cMap["name"], dArray[2], dArray[aInt])

最終目標是像 https://github.com/symfony/var-dumper 那樣易用。

Github:https://github.com/Kretech/xgo/tree/master/p

注意,我自己是在本地 debug 用的,不建議線上使用。。

相關文章