在 Flexbuilder 3 中向 HttpService 传递参数

发布于 2024-12-04 09:50:29 字数 62 浏览 0 评论 0原文

我陷入了需要将组合框的选定项目作为参数传递给 HttpService 的困境。有人可以告诉我如何执行此操作吗?

I have stuck at the point where i need to pass a selected item of a comboBox as a parameter to a HttpService.Can someone tell me how to do this.

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

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

发布评论

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

评论(1

同尘 2024-12-11 09:50:30

尝试下面的代码

params["serviceParamName"] = comboBox.selectedItem;
httpServ.send(params);

<mx:HTTPService id="httpServ">
    <mx:resultFormat>flashvars</mx:resultFormat>
    <mx:url>http://www.adobe.com</mx:url>
    <mx:result>combo.selectedItem=httpServ.lastResult.message</mx:result>
    <mx:fault>Alert.show(event.toString(), event.type);</mx:fault>
</mx:HTTPService>

Try the following code below

params["serviceParamName"] = comboBox.selectedItem;
httpServ.send(params);

<mx:HTTPService id="httpServ">
    <mx:resultFormat>flashvars</mx:resultFormat>
    <mx:url>http://www.adobe.com</mx:url>
    <mx:result>combo.selectedItem=httpServ.lastResult.message</mx:result>
    <mx:fault>Alert.show(event.toString(), event.type);</mx:fault>
</mx:HTTPService>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文