gpt4 book ai didi

json - 将 JSON 解码为 map

转载 作者:IT王子 更新时间:2023-10-29 02:32:25 24 4
gpt4 key购买 nike

我有一个非常简单的 JSON 文件,类似这样,但有数千个字符串:

{"fruits":["apple","banana","cherry","date"]}

我想把水果装进一个

map[string]interface{}

什么是最好的方法?有没有一种方法不需要遍历每个元素并使用循环插入到 map 中?

最佳答案

这是一个示例,说明如何在没有任何结构的情况下解码为字符串列表。

package main

import "fmt"
import "encoding/json"

func main() {
src_json := []byte(`{"fruits":["apple","banana","cherry","date"]}`)
var m map[string][]string
err := json.Unmarshal(src_json, &m)
if err != nil {
panic(err)
}
fmt.Printf("%v", m["fruits"][0]) //apple
}

或者您可以使用 map [字符串][]接口(interface){}

关于json - 将 JSON 解码为 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45100021/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com