ExtJS 预处理器中的 Ajax 请求

发布于 2024-12-05 09:03:21 字数 319 浏览 0 评论 0原文

我创建了一个预处理器(通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还给你自由 2024-12-12 09:03:21

唯一的方法是使用 async: false 实际上使 AJAX 请求同步(相当令人震惊,不是吗)。

The only way is to actually make the AJAX request synchronous (quite shocking, isn't it), by using async: false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文