当使用实体列表调用 db.put() 时,是否会为每个实体调用特定于模型的 put() ?
我的 GAE 应用程序上有一些模型,并且我已经重写了其中一些模型的 put()
。当我使用这些实体的列表调用 db.put() 时,是否可以保证每个实体上的重写 put()
都会被调用?
我现在看到的是,实体只是在没有被调用的情况下被保存。有没有什么好的方法可以确保每次保存(甚至是批量保存)之前都完成工作?
I've got some models on my GAE app, and I've overriden put()
on some of them. When I call db.put()
with a list of these entites, is there a guarantee that the overriden put()
on each entity will be called?
What I'm seeing right now is that the entities are just getting saved without it being called. Is there any good way to make sure stuff is done before every save, even batches?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,您还需要 monkeypatch
db.put()
。有关这方面的一个很好的示例,请查看 Nick Johnson 的精彩博客文章 数据存储模型的前置和后置挂钩。如果您查看
db
模块,您会看到db.put()
不会调用实体的put()
功能。No. You need to monkeypatch
db.put()
too. For a good example of this, check out Nick Johnson's excellent blog post on Pre- and post- put hooks for Datastore models.If you look at the source code for the
db
module, you'll see thatdb.put()
does not call the entity'sput()
function.您可以尝试以下操作:
但是,可能有更好的方法来做到这一点。如果您尝试设置某些属性,您应该查看自定义属性类。如果您尝试进行日志记录或缓存,则应该研究数据存储挂钩。
You could try something like:
However, there is probably a better way to do it. If you are trying to set some properties you should check out custom property classes. If you are trying to do logging or caching you should investigate datastore hooks.