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.
在处理了对服务器的所有调用之后,我需要发生一些事情。但我不知道这些会按什么顺序发生。
所以我想知道 extjs/sencha touch 是否在某处保留了所有打开调用的列表。
好像这种情况确实存在。
Ext.Ajax.requests
保留所有未决呼叫的列表。
如果我正确理解您的问题,您可能不需要这样的功能,您可以在执行每个调用时在 n 个异步函数返回递增计数器后安排一些事情。在每个回调递减计数器上,如果全部返回,计数器将达到零,您可以执行“全局”回调。