ExtJS 预处理器中的 Ajax 请求
我创建了一个预处理器(通过 Ext.Class.registerPreprocessor 注册),对于某些类型的类,它将创建一个 ajax 请求。根据该 ajax 请求的结果,该类将被更改或不更改。
类初始化->预处理器 1 ->我的预处理器 -> Ajax请求查询+响应->预处理器2-> Class Instancied
如果我能够自己调用“下一个”预处理器,那就很容易了,但我不知道我是否可以做到这一点。我尝试了一些方法,但是无论我做什么,下一个预处理器都会自动调用,并且我无法控制最终实例。
我怎样才能做到这一点?
多谢!
I created a preprocessor (registered via Ext.Class.registerPreprocessor), and for certain kind of classes it will create an ajax request. Depending on the result of this ajax request, the class will be altered or not.
Class Init -> Preprocessor 1 -> My Preprocessor -> Ajax Request Query + Response -> Preprocessor 2 -> Class Instancied
It would be easy if I was able to call the "next" preprocessor by myself, but I don't know if I can do that. I tried a few things, but whatever I do the next preprocessor is called automatically, and I have no control on the final instance.
How can I do that?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一的方法是使用 async: false 实际上使 AJAX 请求同步(相当令人震惊,不是吗)。
The only way is to actually make the AJAX request synchronous (quite shocking, isn't it), by using async: false.