我将实体“id”作为字符串传递给 URL,例如:
..../foo/234565
我想在以下查询中使用 id:
//...i hace some code that gets stringId from the URL, and I verified that it works
stringId = ....
theKey, err := datastore.DecodeKey(stringId)
q := datastore.NewQuery("Foo").Filter("__key__ =", theKey)
我得到的错误:
proto: can't skip unknown wire type 7 for datastore.Reference
有没有一种简单的方法可以将 stringId 转换为“密钥”?
长风秋雁
相关分类