如何在alertHandler中返回值

发布于 2024-12-09 16:45:01 字数 136 浏览 0 评论 0原文

在flex 3.5中,我必须使用alertHandler函数来管理Alert.show。在该函数中不可能有返回值。但我需要从中获得一些价值。是否可以写成返回一个值而不写alertHandler函数。如果alertHandler在sense中,如何返回一个值。

In flex 3.5 I have to manager Alert.show with alertHandler function. In that function there is no return value is possible. But i Need to get some value from that. Is it possible to write as return one value without writing alertHandler function. If alertHandler in the sence, how to return one value.

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

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

发布评论

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

评论(1

苦笑流年记忆 2024-12-16 16:45:01

返回值来自传递到侦听器的 CloseEvent。 event.detail 如果我没记错的话。因此,如果有人点击“是”,类似 event.detail == Alert.Yes 的逻辑将是这样。

The return value comes through the CloseEvent which is passed into your listener. event.detail if I remember correctly. So something like event.detail == Alert.Yes would be the logic if someone clicks "Yes."

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