class UserData(db.Model):
user_name = db.StringProperty()
pass_word = db.StringProperty()
points = db.IntegerProperty()
如果我想更新“点”实体怎么办?阅读谷歌文档,发现没有运气。
class UserData(db.Model):
user_name = db.StringProperty()
pass_word = db.StringProperty()
points = db.IntegerProperty()
如果我想更新“点”实体怎么办?阅读谷歌文档,发现没有运气。
我不认为你搜索/阅读文档很辛苦。
https://developers.google.com/appengine/docs/python/datastore/overview#Python_Datastore_API
讨论如何使用和创建/更新实体。
基本的 API 文档也详细介绍
模型类文档甚至告诉你
https://developers.google.com/appengine/docs/python/datastore/modelclass