(t *testing.T)
| 136 | } |
| 137 | |
| 138 | func TestVisitor_JSONGet(t *testing.T) { |
| 139 | str := "{\"age\":10, \"abc\":{\"def\":\"def\"}}" |
| 140 | get := xjson.Get(str, "abc.def") |
| 141 | fmt.Println(get.String()) |
| 142 | } |
| 143 | func TestVisitor_JSONGet2(t *testing.T) { |
| 144 | script := ` |
| 145 | string s="1"; |