1'
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
package tiktok_api
|
package tiktok_api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
@@ -42,3 +43,23 @@ func TestGetShipmentInfo(t *testing.T) {
|
|||||||
func TestGetStoreAutoCallRiderInfo(t *testing.T) {
|
func TestGetStoreAutoCallRiderInfo(t *testing.T) {
|
||||||
a.GetStoreAutoCallRiderInfo(64212030)
|
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)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user