<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" >
<mx:Script>
<![CDATA[
import mx.rpc.events.ResultEvent;
import mx.controls.Alert;
public function wsHandle(e:ResultEvent):void
{
ddd.text = e.result as String;
}
public function doclick(event:MouseEvent):void
{
wsBlogAggr.getMobileCodeInfo.send(sss.text,'');
}
]]>
</mx:Script>
<mx:Label text="Label" id="ddd" fontSize="12"/>
<mx:TextInput id="sss"/>
<mx:Button label="查询" id="xxx" click="doclick(event)"/>
<mx:WebService id="wsBlogAggr" wsdl="http://www.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl" useProxy="false">
<mx:operation name="getMobileCodeInfo" result="wsHandle(event);" fault="Alert.show(event.fault.faultString,'Error')" />
</mx:WebService>
</mx:Application>
该示例可以直接运行
本文介绍了一个使用Flex进行移动代码信息查询的应用实例。通过WebService调用远程服务获取并显示移动代码的相关信息,展示了从输入手机号到获取并展示结果的完整流程。
2856

被折叠的 条评论
为什么被折叠?



