JSON 值可以是: l 数字(整数或浮点数) l 字符串(在双引号中) l 逻辑值(true 或 false) l 数组(在方括号中) l 对象(在花括号中) l null JSON建构有两种结构 JSON简单说就是javascript中的对象和数组,所以这两种结构就是对象和数组两种结构,通过这两种结构可以表示各种复杂的结构. 1.对象:对象在js中表示为“{}”括起来的内容,数据结构为 {key:value,key:value,...}的键值对的结构,在面向对象的语言中,key为…
package main import ( "io/ioutil" "fmt" "net/http" "encoding/json" ) type Eth struct { Status int Data Ticker } type Ticker struct { Ticker []float64 Seq int } func main() { httpGet() } func httpGet() { resp, err :=…