如何在alertHandler中返回值
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回值来自传递到侦听器的 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 likeevent.detail == Alert.Yes
would be the logic if someone clicks "Yes."