我正在尝试从我的数据存储数据库中获取数据,我碰壁了,似乎再也无法获得任何东西了……
有效方法:
type Foo struct {
X int `json:"x" datastore:"first"`
Y int `json:"y" datastore:"second"`
Z int `json:"z" datastore:"third"`
}
我想要什么:
type Foo struct {
X int `json:"x" datastore:"first"
Y int `json:"y" datastore:"second"`
Bar []Bars `json:"more"`
}
type Bars struct {
Z int `json:"z" datastore:"third"`
}
我收到错误datastore: Cannot load field "third" into "main.Foo": no such struct field.
有人可以帮忙吗?