我在flex 3中有一个问题我无法使用HTTPservice方法获取变量=“GET”
代码中的:
<mx:HTTPService id="variables" method="GET" request="var1,var2" resultFormat="text"/>
private function init():void{
variables.send();
Alert.show(variables.lastResult.toString());
}
使用此网址时:
滨调试/ conectado.html VAR1 =你好&安培; VAR2 =世界
感谢您的帮助。
答案 0 :(得分:1)
如果发送HTTP服务,则无法立即收到结果,因为与Flex的服务器 - 客户端通信是异步的。 您需要为HTTP-Service指定一个事件处理程序,它将侦听结果事件。在此处理程序中,您可以访问结果。