com.google.cloud.datastore.Key
具有toUrlSafe
method()
如何从此网址安全字符串重新创建密钥?键只有getParent
,getId
,getName
...]等方法
我尝试过
com.google.cloud.datastore.Datastore
密钥工厂,但是我还没有找到任何从url安全字符串创建密钥的方法。
com.google.cloud.datastore.Key具有toUrlSafe方法(),如何从该网址安全字符串重新创建密钥?键只有getParent,getId,getName等方法。我尝试使用com.google.cloud ....
看来您正在使用Java。在Java中,Key类具有一个静态方法fromUrlSafe(https://googleapis.dev/java/google-cloud-clients/latest/com/google/cloud/datastore/Key.html#fromUrlSafe-java.lang.String-)。