第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將 JSON 與數(shù)組轉(zhuǎn)換

將 JSON 與數(shù)組轉(zhuǎn)換

Go
慕村9548890 2023-08-14 17:45:37
我編寫了以下代碼來從 JSON 獲取數(shù)組,并且想要檢索類似的內(nèi)容[{“id”:“id1”,“友好”:“友好1”},{“id”:“id2”,“友好”:“友好2”}]但它是空的:[{"id":"","friend":""},{"id":"","friend":""}]package mainimport (    "encoding/json"    "fmt")var input = `[            {                "not needed": "",                "_source": {                    "id": "id1",                    "friendly": "friendly1"                }            },            {                "_source": {                    "id": "id2",                    "friendly": "friendly2"                }            }]`type source struct {    Id string `json:"id"`    Friendly string `json:"friendly"`}func main() {    result := make([]source, 0)    sources := []source{}    json.Unmarshal([]byte(input), &sources)    for _, n := range sources {        result = append(result, n)    }    out, _ := json.Marshal(result)    fmt.Println(string(out))}
查看完整描述

1 回答

?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試創(chuàng)建另一個(gè)結(jié)構(gòu)體,其中有一個(gè)名為Sourcetype 的字段source。在下面的示例中,我將此稱為 struct outer。您的輸入應(yīng)該是一個(gè)數(shù)組outer,您的結(jié)果應(yīng)該是一個(gè)數(shù)組source。


像這樣的東西:



import (

    "encoding/json"

    "fmt"

)


var input = `[

            {

                "not needed": "",

                "_source": {

                    "id": "id1",

                    "friendly": "friendly1"

                }

            },

            {

                "_source": {

                    "id": "id2",

                    "friendly": "friendly2"

                }

            }]`


type outer struct {

    Source source `json:"_source"`

}


type source struct {

    Id string `json:"id"`

    Friendly string `json:"friendly"`

}


func main() {

    result := make([]source, 0)

    sources := []outer{}


    json.Unmarshal([]byte(input), &sources)


    for _, n := range sources {

        result = append(result, n.Source)

    }

    out, _ := json.Marshal(result)

    fmt.Println(string(out))

}```


查看完整回答
反對(duì) 回復(fù) 2023-08-14
  • 1 回答
  • 0 關(guān)注
  • 214 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)