我有一个实体 EmergencyCase,它有 2 个嵌入式结构(1 个数组和 1 个结构)当我尝试通过调用来保存 EmergencyCase 时:
datastore.Put(c, key, &ec)
除了 Pos 字段(类型 Position)外,所有内容都保存完好。没有关于此的错误或日志条目。它只是不存储。有什么建议?
这是我的 3 个实体定义:
type Position struct{
lon float32
lat float32
}
type EmergencyCase struct{
// Autogenerated id, not stored in the database.
ID string `datastore:"-"`
CreatedAt time.Time
Closed bool
ClosedByUser bool `datastore:",noindex"`
AutoClosed bool `datastore:",noindex"`
Pos Position
Events []Event
}
type Event struct{
// Autogenerated id, not stored in the datastore.
ID string `datastore:"-"`
CreatedAt time.Time
Name string `datastore:",noindex"`
}
交互式爱情
跃然一笑
相关分类