gopkg/json/json_test.go

28 lines
611 B
Go
Raw Normal View History

2021-03-11 00:05:56 +08:00
// Package json...
//
// Description : json...
//
// Author : go_developer@163.com<张德满>
//
// Date : 2021-03-10 11:44 下午
package json
import (
"fmt"
"testing"
)
func TestJSON(t *testing.T) {
tree := NewDynamicJSON()
2021-03-11 22:12:14 +08:00
fmt.Println(tree.extraSliceIndex("[200]"))
2021-03-11 00:05:56 +08:00
tree.SetValue("extra.height.value", 180)
2021-03-11 17:02:44 +08:00
tree.SetValue("extra.height.unit.use", "cm")
tree.SetValue("extra.height.unit.open", "1")
tree.SetValue("name", "zhangdeman")
tree.SetValue("good.name", "good")
tree.SetValue("work", "111")
tree.SetValue("good.price", "180")
tree.SetValue("good.unit", "$")
fmt.Println(tree.String())
2021-03-11 00:05:56 +08:00
}