diff --git a/platformapi/tiktok_shop/tiktok_api/transport_test.go b/platformapi/tiktok_shop/tiktok_api/transport_test.go index 323d7401..a6a4765e 100644 --- a/platformapi/tiktok_shop/tiktok_api/transport_test.go +++ b/platformapi/tiktok_shop/tiktok_api/transport_test.go @@ -1,6 +1,7 @@ package tiktok_api import ( + "encoding/json" "fmt" "testing" ) @@ -42,3 +43,23 @@ func TestGetShipmentInfo(t *testing.T) { func TestGetStoreAutoCallRiderInfo(t *testing.T) { a.GetStoreAutoCallRiderInfo(64212030) } + +func TestMap2(t *testing.T) { + aa := `{ + "四川":[ + {"张淋":"18981810340"},{"李伟达":"18988808752"}, + {"张淋":"18981810340"},{"李伟达":"18988808752"} + ], + "广州":[ + {"张淋":"18981810340"},{"李伟达":"18988808752"}, + {"张淋":"18981810340"},{"李伟达":"18988808752"} + ], + "西安":[ + {"张淋":"18981810340"},{"李伟达":"18988808752"}, + {"张淋":"18981810340"},{"李伟达":"18988808752"} + ] +}` + list := make(map[string][]map[string]string, 0) + json.Unmarshal([]byte(aa), &list) + t.Log(list) +}