golang 解码未知键的 json 字符串

Posted 白桂任的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang 解码未知键的 json 字符串相关的知识,希望对你有一定的参考价值。

我们可以使用 interface 接收 json.Unmarshal 的结果,然后利用 type assertion 特性来进行后续操作。

 

package main

import (
	"encoding/json"
	"fmt"
)

func main() {
	b := []byte(`{"Name":"Wednesday","Age":6,"Parents":["Gomez","Morticia"]}`)

	var f interface{}
	json.Unmarshal(b, &f)

	m := f.(map[string]interface{})
	fmt.Println(m["Parents"])  // 读取 json 内容 
	fmt.Println(m["a"] == nil) // 判断键是否存在
}

  

这个 type assertion 的作用是类似于 java 中的 Object 对象转换成某种具体的对象,好比如下面的例子:

import java.util.ArrayList;

public class Main {
    public static void main(String[] args) {
        ArrayList arrayList = new ArrayList<Integer>();

        ArrayList arrayList1 =  (ArrayList) (new Test<>()).test(arrayList);
        arrayList1.add(1);
        System.out.println(arrayList1);
    }
}

class Test<T> {
    public T test(T t) {
        return t;
    }
}

  上面的  ArrayList arrayList1 = (ArrayList) (new Test<>()).test(arrayList);  这一行,我们明确的知道函数返回值是 ArrayList 类型,所以我们可以加上 (ArrayList) 进行类型转换。

而 golang 中只是写法不一样而已,golang 的写法是 v.(xxx),作用是把 interface{} 类型的变量当作 xxx 类型使用。

 

以上是关于golang 解码未知键的 json 字符串的主要内容,如果未能解决你的问题,请参考以下文章

Rails 无法正确解码来自 jQuery 的 JSON(数组变成带有整数键的散列)

在 kotlinx.serialization 中编码/解码 JSON“字符串”

嵌套Json提取中间未知键的值

如何通过 Retrofit 解析带有未知键的 json?

如何在 Swift 中解码具有许多唯一键的嵌套 JSON?

Swift:用未知键解码 JSON? [复制]