基本上我有一个想要传递给前端的对象。我将它记录在后端并且它不为空,但是当我警告它时,它在前端变为空。
...
presentation := &presentationStruct {
Object: object,
}
log.Errorf("%v", object) // not null
template.Execute(writer, presentation)
...
// but it becomes null here
alert({{.Object}})
对象是一种类型
map[string]map[string]struct {
[]float32
map[int][]struct {
string
float32
}
}
是不是因为类型太复杂了?