Go 的标准库中提供的 json 包为我们提供了我们需要的所有功能。对于任何 JSON 字符串,解析它的标准方法是:import "encoding/json" //...// ... myJsonString := `{"some":"json"}`// `&myStoredVariable` is the address of the variable we want to store our // parsed data in json.Unmarshal([]byte(myJsonString), &myStoredVariable) //...