如何仅使用密钥获取所有数据存储结果?
我对 Python 和 GAE 还很陌生。忙着建立一个简单的博客来学习。想知道如何获取数据存储条目?
这就是我的数据库对象的样子:
class BlogArticles(db.Model):
author = db.UserProperty()
article_name = db.StringProperty()
article = db.TextProperty()
date = db.DateTimeProperty(auto_now_add=True)
我可以通过将密钥传递给类似的东西来获取作者和文章吗
db.get(key_value)
I am pretty new to Python and GAE. Busy building a simple blog to learn. Was wondering, how can I get the datastore entries?
This is how my DB object looks like :
class BlogArticles(db.Model):
author = db.UserProperty()
article_name = db.StringProperty()
article = db.TextProperty()
date = db.DateTimeProperty(auto_now_add=True)
Can I get say author and article from passing the key to something like
db.get(key_value)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,想通了:)
这就是我的做法......如此简单。
aah figured it out :)
Here is how I did it...so simple.