更新数据存储区应用引擎中的实体

时间:2011-02-21 14:56:31

标签: python google-app-engine

  

可能重复:
  Update app engine entity

我需要更新从数据存储区加载的实体。但是如何?

1 个答案:

答案 0 :(得分:14)

你去吧

myKey = db.Key.from_path('MyModel', 'mykeyvalue')
rec = db.get(myKey)

rec.MyProperty = 'this is a new value'
rec.put()

以下是文档的链接。

http://code.google.com/appengine/docs/python/datastore/entities.html