如何显示来自后端的成功消息并在 Flex 前端显示?

发布于 2024-11-02 08:00:39 字数 53 浏览 3 评论 0原文

将记录插入后端后,如何在前端显示成功消息。 我使用 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 技术交流群。

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

发布评论

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

评论(2

夜深人未静 2024-11-09 08:00:39

假设前端使用 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.

嘿哥们儿 2024-11-09 08:00:39

使用mxml中的remoteObject

<mx:Script>
        <![CDATA[
            import mx.controls.Alert;
            import mx.rpc.events.FaultEvent;
            import mx.rpc.events.ResultEvent;

            private function resultHandler(event:ResultEvent):void
            {
                Alert.show("Back with success");
                Alert.show(event.message.toString());
            }

            private function faultHandler(event:FaultEvent):void
            {
                Alert.show("Back with Error");
                Alert.show(event.message.toString());
            }

        ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteObject" destination="yourdestination"
                            showBusyCursor="true"
                            result="{resultHandler(event)}"
                            fault="{faultHandler( event )}">
    </mx:RemoteObject>

注意:上面的代码在Flex3中

希望有帮助

Use remoteObject as in mxml

<mx:Script>
        <![CDATA[
            import mx.controls.Alert;
            import mx.rpc.events.FaultEvent;
            import mx.rpc.events.ResultEvent;

            private function resultHandler(event:ResultEvent):void
            {
                Alert.show("Back with success");
                Alert.show(event.message.toString());
            }

            private function faultHandler(event:FaultEvent):void
            {
                Alert.show("Back with Error");
                Alert.show(event.message.toString());
            }

        ]]>
    </mx:Script>
    <mx:RemoteObject id="remoteObject" destination="yourdestination"
                            showBusyCursor="true"
                            result="{resultHandler(event)}"
                            fault="{faultHandler( event )}">
    </mx:RemoteObject>

Note:Above Code is in Flex3

Hopes that helps

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