整理打印

This commit is contained in:
2025-09-30 01:48:54 +08:00
parent cee7898fff
commit bff7f73d8b
4 changed files with 73 additions and 15 deletions
+24
View File
@@ -0,0 +1,24 @@
package zm_lib
import (
"fmt"
"testing"
)
func TestP1(t *testing.T) {
fmt.Println("TestP1")
err := PrintArgsMap(map[string]any{
"id": []string{"1", "2", "3"},
"name": "苏通",
"data": map[string]any{
"layer": "2",
"haha": "3",
"child": map[string]any{
"layer": "2",
"haha": "3",
},
},
})
fmt.Printf("%v\n", err)
}