我已经陷入了需要将一个comboBox的选定项目作为参数传递给HttpService的地方。有人告诉我该怎么做。
答案 0 :(得分:0)
请尝试以下代码
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>