flex 4 暂时暂停执行

发布于 2024-10-10 07:15:58 字数 251 浏览 3 评论 0原文

我正在使用 Flex-4 构建一个依赖于数据库的应用程序。我希望应用程序暂停执行,直到收到数据库的回复(使用 PHP-SQL 请求)。 Flex 在执行过程中,即使您调用需要警报/弹出窗口的用户输入,也会显示警报并继续进一步执行,而不会因用户输入而暂停。

一种解决方法是在一个函数中发送数据请求,并在另一个函数中检查所请求数据的到达(可能使用结果事件作为触发器)。但我想要一个暂停-继续功能。

请帮忙。

谢谢和问候,

拉胡尔

I am building a database dependent application using Flex-4. I would like the application to pause execution till i receive a reply from my DB (using PHP-SQL request). Flex, in its execution, even if you call for a user input required Alert/Pop-Up, displays the Alert and continues further execution without pausing for a user input.

One work around was to send the data request in one function and check the arrival of the requested data in another (maybe use the result event as a trigger). But I would like to have a pause-continue functionality.

Please assist.

Thanks and Regards,

Rahul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一萌ing 2024-10-17 07:15:58

我不确定您所说的暂停应用程序到底是什么意思。从你的问题来看,你似乎想阻止用户的任何输入。这通常是通过禁用所有用户控件直到收到服务器的响应来完成的。您可以直接禁用放置所有这些控件的面板,而不是对每个控件执行此操作。

I am not sure exactly what you mean by pausing the application. From your question, it seems as though you want to prevent any input from the user. This is usually done by disabling all the user controls till you receive the response from the server. Instead of doing that for each control, you can directly disable the panel in which all these controls are placed.

晌融 2024-10-17 07:15:58

向正在执行数据库代码的函数发送回调。

Send a callback to your function that is executing the DB code.

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