php editor Baicao brings you an article about parsing JSON arrays in golang. In golang, we can use custom types to parse complex JSON arrays. This approach not only enables better understanding and processing of JSON data, but also provides a more flexible way of operation. This article will introduce in detail how to use custom types to parse JSON arrays, and give some practical example codes to help you better understand and apply this technique. Whether you are a beginner or an experienced developer, you can benefit a lot from this article, come and explore together!
Question content
I am trying to parse a json array in golang, the format is as follows:
2beef840f8f9d8bb724c7736cb14989For example, json should contain schemas for different tables. I have tried the following code but the schema returns empty:
package main import ( "encoding/json" "io" "log" "os" ) type ColumnType struct { Name string `json:"name"` Type string `json:"type"` } type Schema struct { Schema map[string][]ColumnType } func main() { mocksSchemas, _ := os.Open("parse_config/mock_schema.json") var schemas []Schema content, err := io.ReadAll(mocksSchemas) if err != nil { log.Fatal("Error when reading mock file: ", err) } err = json.Unmarshal(content, &schemas) if err != nil { log.Fatal("Error during Unmarshal(): ", err) } defer mocksSchemas.Close() }
What did i do wrong? I would be grateful if you could point out my mistake Thanks!
Workaround
To match the source/destination JSON you can use the following types:
type Schema map[string][]ColumnType
Alternatively, you can use something easier to use:
type Schema struct { Table string Columns []ColumnType } func (s Schema) MarshalJSON() ([]byte, error) { return json.Marshal(map[string][]ColumnType{ s.Table: s.Columns, }) } func (s *Schema) UnmarshalJSON(data []byte) error { var m map[string][]ColumnType if err := json.Unmarshal(data, &m); err != nil { return err } for k, v := range m { s.Table = k s.Columns = v break } return nil }
The above is the detailed content of Parse JSON array in golang using custom type. For more information, please follow other related articles on the PHP Chinese website!

详解Java中JSON数组的排序和过滤操作在Java开发中,处理JSON数据是一项常见的任务。JSON数组作为其中一种常用的数据结构,在实际应用中经常需要进行排序和过滤操作。本文将详细介绍Java中JSON数组的排序和过滤操作,并提供相应的代码示例。一、JSON数组的排序操作使用JSONArray对象存储JSON数组在Java中,使用json库处理JSON数

快速上手:Java中的JSON数组合并和拆分技巧在现代的软件开发中,数据的格式和传输变得愈发重要。其中,JSON(JavaScriptObjectNotation)是一种常用的数据格式,特别适用于前后端交互和数据存储。在Java开发中,我们经常需要处理JSON对象和JSON数组。本文将介绍如何在Java中合并和拆分JSON数组,以及实现这些操作的技巧和示

JSON可以用作数据交换格式,它是轻量级的且与语言无关。一个JSONArray可以解析文本字符串以生成类似于向量的对象,并支持java.util.List接口。我们可以使用org.json.CDL类将JSON数组转换为CSV格式,它提供了一个静态方法toString(),用于将JSONArray转换为逗号分隔的文本。我们需要导入org.apache.commons.io.FileUtils包,以使用writeStringToFile()方法将数据存储在CSV文件中。语法publicstaticj

一个JSON 是一种轻量级的 数据交换格式,JSON的格式是 键值对。JSONArray 可以解析文本从一个字符串生成一个类似向量的对象并支持java.util.List接口。我们可以使用org.json.simple.JSONArray类在Java中合并两个JSON数组。我们可以使用addAll() 方法(从接口 java.util.List继承)在下面的程序中合并两个JSON数组。示例

入门级指南:Java中操作JSON数组的常见问题解答摘要:随着互联网的发展,JSON(JavaScriptObjectNotation)成为了数据交换的常用格式。在Java开发中,操作JSON数组是一项常见的任务。本文将解答Java开发中操作JSON数组的常见问题,并提供代码示例。如何创建一个JSON数组?在Java中,可以使用第三方库如JSON-jav

Gson库提供了一个名为com.google.gson.reflect.TypeToken的类来存储泛型类型,通过创建一个GsonTypeToken类并传递类类型。使用这个类型,Gson可以知道在泛型类中传递的类。语法publicclassTypeToken<T>extendsObject我们可以在下面的示例中将JSON数组反序列化为通用类型的列表示例importjava.lang.reflect.Type;importjava.util.*;importcom.go

JsonGenerator接口可用于以流式传输方式将JSON数据写入输出源。我们可以使用JsonGenerator的writeStartArray()方法创建或实现一个JSON数组,该方法在当前对象上下文中写入JSON名称/起始数组字符对。writeStartObject()方法写入JSON起始对象字符,仅在数组上下文中有效,writeEnd()方法写入当前上下文的结尾。语法JsonGeneratorwriteStartArray(Stringname)示例importjava.io.*;imp

我正在尝试在golang中解析一个json数组,格式如下:2牛肉840f8f9d8bb724c7736cb14989例如,json应该包含不同表的模式。我已尝试以下代码,但架构返回空:packagemainimport("encoding/json""io""log""os")typeColumnTypestruct{Namestring`json:"name"`Typestring`json:"


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)
