标签: python google-cloud-datastore
我有这个python代码段,用于从Google Compute Engine添加新实体。但是这段代码会导致userId以未定义的类型创建。如何从计算引擎创建属性时指定属性的类型?
kg = datastore.Entity(key) try: kg.update({ 'userId': userId, }) client.put(kg)
答案 0 :(得分:2)
gloud-python将根据您在属性映射中放置的值的类型推断属性的类型。
gloud-python
Check if a PR is up to date with the target branch