如何获取数据存储名称/ ID列值

时间:2018-10-05 16:31:14

标签: python google-app-engine google-cloud-datastore

我正在尝试使用下面的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))

1 个答案:

答案 0 :(得分:1)

数据存储区实体的键是特殊属性,不属于属性字典。

https://googleapis.github.io/google-cloud-python/latest/datastore/entities.html所述,您可以通过在实体本身上调用id来获取ID。所以list(result)[0].idlist(result)[0].key.id