Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在gae 联机帮助页中看到的entity.save()文档记录不多,但仍然可以使用。entity.put()和 和有什么不一样entity.save()?永远不应该save()使用而只能put()代替?
entity.save()
entity.put()
save()
put()
save只是 的同义词put。在源码中定义如下:
save
put
save = put
查看源代码。save