摘要:
Decoder: python package main import ( "encoding/json" "fmt" "io" "log" "strings" ) func main ( ) { const jsonStream = ` { "Name" : "Ed" , "Text" : "Kn 阅读全文
摘要:
golang 中 map 转 struct golang 中 json转 map python package main import ( "fmt" "encoding/json" ) func JsonToMap() { jsonStr := ` { "name":"liangyongxing" 阅读全文
摘要:
``` python package main import ( "fmt" "encoding/json" ) type ItemMessage struct { ItemType int ItemId int ItemCount int GoodsStatue GoodsStatue } typ 阅读全文
摘要:
``` python package main import ( "fmt" "sync" "time" ) / ticker只要定义完成,从此刻开始计时,不需要任何其他的操作,每隔固定时间都会触发。 timer定时器,是到固定时间后会执行一次 如果timer定时器要每隔间隔的时间执行,实现tick 阅读全文