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

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

如何將接口{}保存的數(shù)據(jù)轉(zhuǎn)換為切片(當(dāng)接口{}的數(shù)據(jù)結(jié)構(gòu)已知時(shí))?

如何將接口{}保存的數(shù)據(jù)轉(zhuǎn)換為切片(當(dāng)接口{}的數(shù)據(jù)結(jié)構(gòu)已知時(shí))?

Go
長(zhǎng)風(fēng)秋雁 2022-08-24 20:36:04
我從一個(gè)函數(shù)接收數(shù)據(jù),該函數(shù)返回一個(gè).apiFunc()interface{}我知道在這種特定情況下,返回的數(shù)據(jù)是諸如structtype Data struct {     hello string     world int}我不知道切片有多大(API可以發(fā)送一個(gè)或100個(gè)此類實(shí)體的JSON數(shù)組)。我應(yīng)該如何聲明變量myData,以便它是數(shù)據(jù)切片,由apiFunc()的返回值組成?我知道那件事ret := apiFunc() myData := ret.([]Data)不起作用(它恐慌與interface conversion: interface {} is []interface {}, not []main.Data)
查看完整描述

1 回答

?
當(dāng)年話下

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

此代碼的工作原理:


package main


import (

    "fmt"

)


type Data struct {

    hello string

    world int

}


func apiFunc() interface{} {

    return []Data{{hello: "first hello", world: 1}, {hello: "second hello", world: 2}}

}


func main() {

    ret := apiFunc()

    fmt.Println(ret.([]Data))

}

去游樂(lè)場(chǎng)鏈接: https://play.golang.org/p/SOGr6Fj-wO5


確保實(shí)際返回的是切片,而不是切片apiFunc()Datainterface


如果它是接口切片,則需要執(zhí)行以下操作:


package main


import (

    "fmt"

)


type Data struct {

    hello string

    world int

}


func apiFunc() interface{} {

    toReturn := make([]interface{}, 2)

    toReturn[0] = Data{hello: "first hello", world: 1}

    toReturn[1] = Data{hello: "second hello", world: 2}

    return toReturn

}


func main() {

    ret := apiFunc()

    interfaceSlice := ret.([]interface{})

    dataSlice := make([]Data, len(interfaceSlice))

    for index, iface := range interfaceSlice {

        dataSlice[index] = iface.(Data)

    }

    fmt.Println(dataSlice)

}

去游樂(lè)場(chǎng)鏈接: https://play.golang.org/p/TsfMuKj7nZc


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

添加回答

舉報(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)