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.
如何确保像“删除”这样的异步对象化 API 调用成功完成?
那么,“ofy().delete”如果没有成功完成会抛出一些异常吗?
现在打电话()。
ofy().delete().key(thing).now()
这将执行同步删除操作。否则异步操作将在请求结束时完成(确保安装ObjectifyFilter),然后您将收到异常(例如超时)。
ObjectifyFilter