如何通过url获取App Engine数据存储中的数据
在Google App Engine中,使用makePersistent()将数据存储在数据存储中后,我知道如何使用getObjectById()通过密钥获取数据内容。 但现在我想通过 url 获取数据存储中的数据。我认为该网址已创建。 所以问题是如何创建 url 来获取数据存储中的数据
in Google App Engine,after using the makePersistent() to store the data in the datastore,i know how to get the data content by the key using getObjectById().
but now i wanna to get the data in the datastore by url. i think the url is created .
so the question is how the url can be created to get the data in the datastore
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有通过 URL 访问数据存储的内置方法。如果您选择这样做,您的应用程序可以实现从数据存储区返回数据的 URL。
There is no built-in means to access the datastore through URLs. If you choose to, your application can implement URLs that return data from the datastore.
我邀请您查看titan-files。它是 DataStore 和/或 blob 存储之上的强大文件系统抽象。我正在将它用于商业应用程序,到目前为止我对它非常满意。
I invite you to take a look at titan-files. It's a powerful file-system abstraction on top of the DataStore and/or blob store. I'm using it for a commercial application and so far I've been very happy with it.