标签: google-cloud-datastore
我想将Google数据存储区用于我在nodejs上的快速应用程序。我想自动为新实体生成密钥ID。
我在此链接(https://cloud.google.com/datastore/docs/reference/libraries)中检查了此代码段,但它们是使用以下行手动生成的:
const name = 'sampletask1'; const taskKey = datastore.key([kind, name]);
谢谢