onResult HTTPService

发布于 2024-09-17 05:19:11 字数 649 浏览 5 评论 0原文

我有一个 HTTPService:

    <mx:HTTPService id="scoreService" url="http://" method="POST" result="onResult(event)">
        <s:request xmlns="">
            <name>{..}</name>
            <score>{...}</score>
        </s:request>
    </mx:HTTPService>

和一个(事件)脚本:

private function onResult(e:ResultEvent):void
    {
        if (e.result.status == true)
        {
            currentState='...';
        }
        else 
        {
            Alert.show("...", "...");
        }
    }

问题是,在我将数据发布到我的 php 后,没有任何事件可能性会触发...

谢谢,Yan

I have a HTTPService:

    <mx:HTTPService id="scoreService" url="http://" method="POST" result="onResult(event)">
        <s:request xmlns="">
            <name>{..}</name>
            <score>{...}</score>
        </s:request>
    </mx:HTTPService>

And a script for (event):

private function onResult(e:ResultEvent):void
    {
        if (e.result.status == true)
        {
            currentState='...';
        }
        else 
        {
            Alert.show("...", "...");
        }
    }

The problem is that none of the event possibilities fires after I POST data to my php...

Thanks, Yan

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

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

发布评论

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

评论(1

冷夜 2024-09-24 05:19:27

HTTPService 中没有真正的 URL 属性——但我不知道您是否将其编辑掉。尝试将其添加到 HTTPService 标记:

fault="mx.controls.Alert.show(event.fault.faultString)"

您也应该始终有一个错误处理程序。

There isn't a real URL attribute in the HTTPService -- but I don't know if you edited it out or not. Try adding this to the HTTPService tag:

fault="mx.controls.Alert.show(event.fault.faultString)"

You should always have a fault handler too.

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