如何显示来自后端的成功消息并在 Flex 前端显示?
将记录插入后端后,如何在前端显示成功消息。 我使用 FLEX 作为前端,Toad 作为后端。
How do I show a success message in frontend after a record is inserted into the backend.
I amm using FLEX as front end and Toad as Backend.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设前端使用 RemoteObject、WebService 或 HTTPService 进行远程调用,当您从服务器获得成功结果时,其中每一个都应该调度一个结果事件。我将使用结果处理程序来显示警报。
Assuming the front end made a remote call using either RemoteObject, WebService, or HTTPService, each one of those should dispatch a result event when you get a successful result from the server. I would use the result handler to show the alert.
使用mxml中的remoteObject
注意:上面的代码在Flex3中
希望有帮助
Use remoteObject as in mxml
Note:Above Code is in Flex3
Hopes that helps