我有以下匿名结构:
func wrapHal(selfHref string) interface{} {
return struct {
_links struct {
self struct {
href string
}
}
}{
_links: {self: {href: selfHref}}, # this line
}
}
然而,在“这一行”中,我得到了错误missing type in composite literal
如何解决?可以在 Go 中启动匿名嵌套结构吗?
繁星点点滴滴
相关分类