数据存储区“没有这样的结构字段”

时间:2019-01-30 10:33:12

标签: google-cloud-datastore

我正在尝试从我的数据存储数据库中获取数据,我碰壁了,似乎再也无法获得任何东西了……

有效方法:

    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.

有人可以帮忙吗?

0 个答案:

没有答案