我正在尝试使用下面的next(iter(result))获取数据存储类型实体的名称/标识列值,但正在寻找其他方法来实现。我以这种方式尝试了result [0] ['id'],但是没有用。有什么建议吗?
query = self.ds.query(kind=self.__tablename__)
query.add_filter('email', '=', self.email)
result = query.fetch(1)
id = next(iter(result))
答案 0 :(得分:1)
数据存储区实体的键是特殊属性,不属于属性字典。
如https://googleapis.github.io/google-cloud-python/latest/datastore/entities.html所述,您可以通过在实体本身上调用id
来获取ID。所以list(result)[0].id
或list(result)[0].key.id
。