3 回答
TA贡献1851条经验 获得超5个赞
实际上 Go 支持使用标签将实体属性名称映射到不同的结构字段名称(有关详细信息,请参阅此答案:Go 中标签的用途是什么?)。
例如:
type Row struct {
Prop1 string `datastore:"Prop1InDs"`
Prop2 int `datastore:"p2"`
}
但是,datastore如果您尝试使用包含空格的属性名称,则包的 Go 实现会发生混乱。
总结一下:你不能将有空格的属性名称映射到 Go 中的结构字段(这是一个实现限制,将来可能会改变)。
但好消息是您仍然可以加载这些实体,只是不能加载到结构值中。
您可以将它们加载到类型的变量中datastore.PropertyList。datastore.PropertyList基本上是 的一个切片datastore.Property,其中Property是一个结构,它包含属性的名称、它的值和其他信息。
这是可以做到的:
k := datastore.NewKey(ctx, "YourEntityName", "", 1, nil) // Create the key
e := datastore.PropertyList{}
if err := datastore.Get(ctx, k, &e); err != nil {
panic(err) // Handle error
}
// Now e holds your entity, let's list all its properties.
// PropertyList is a slice, so we can simply "range" over it:
for _, p := range e {
ctx.Infof("Property %q = %q", p.Name, p.Value)
}
如果您的实体具有"Have space"value属性"the_value",您将看到例如:
2016-05-05 18:33:47,372 INFO: Property "Have space" = "the_value"
请注意,您可以datastore.PropertyLoadSaver在结构上实现类型并在后台处理它,因此基本上您仍然可以将此类实体加载到结构值中,但您必须自己实现。
但是争取实体名称和属性名称没有空格。如果你允许这些,你会让你的生活更加艰难和悲惨。
TA贡献1848条经验 获得超2个赞
我知道的所有编程语言都将空格视为变量/常量名称的结尾。显而易见的解决方案是避免在属性名称中使用空格。
我还要注意,属性名称成为每个实体和每个索引条目的一部分。我不知道 Google 是否会以某种方式压缩它们,但无论如何我都倾向于使用短属性名称。
TA贡献1824条经验 获得超5个赞
您可以使用注释来重命名属性。
从文档:
// A and B are renamed to a and b.
// A, C and J are not indexed.
// D's tag is equivalent to having no tag at all (E).
// I is ignored entirely by the datastore.
// J has tag information for both the datastore and json packages.
type TaggedStruct struct {
A int `datastore:"a,noindex"`
B int `datastore:"b"`
C int `datastore:",noindex"`
D int `datastore:""`
E int
I int `datastore:"-"`
J int `datastore:",noindex" json:"j"`
}
- 3 回答
- 0 关注
- 166 浏览
添加回答
举报