golang에서 json 파일을 json 객체로 읽는 방법은 무엇입니까? 로컬 머신에 JSON 파일이 저장되어 있습니다.JSON 객체 값을 가져오려면 변수를 읽고 루프해야 합니다.ioutil을 사용하여 파일을 읽은 후 Marshal 명령을 사용하는 경우.Readfile 메서드는 출력으로 몇 가지 숫자를 제공합니다.몇 번 실패했지만 시행 1: plan, _ := ioutil.ReadFile(filename) // filename is the JSON file to read var data interface{} err := json.Unmarshal(plan, data) if err != nil { log.Error("Cannot unmarshal the json ", err) } fmt.Println(da..