gpt4 book ai didi

go - 结构图和 "assignment to entry in nil map"的图

转载 作者:IT王子 更新时间:2023-10-29 01:42:42 26 4
gpt4 key购买 nike

这是一个例子,我每次都得到 assignment to entry in nil map: https://play.golang.org/p/LudJs0rVbs

为了演示我正在尝试做的事情,这里有一个简单的版本,它导致对数据库进行 2 次查找(您必须在第 11 行发挥您的想象力): https://play.golang.org/p/YZNFeMHyMs

基本上,我正在尝试这样做:

things := make(map[string]map[string][]Struct)
...
stuff, there := things["first key"]
if !there {
things["first key"] = getAMapOfStringToStructs()
}
doSomethingWith(things["first key"])

我看了更多 trivial examples of maps-of-maps here但我似乎无法将其映射到我的问题。

最佳答案

您从未在allEntries map 上制作:

allEntries = make(map[string]map[string][]Thing)

https://play.golang.org/p/ecdUU30FQT

关于go - 结构图和 "assignment to entry in nil map"的图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30243581/

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