我的项目有问题,我尝试使用我从php文件中获取的xml数据填充列表。我用httpservice调用php文件,这个文件返回xml数据。现在似乎有问题,但我没有得到任何错误。我只是在调试后知道我的XMLListCollection仍为空。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:components="components.*"
creationComplete="httpService.send()">
<s:layout>
<s:VerticalLayout paddingTop="20" gap="20"
horizontalAlign="center" />
</s:layout>
<fx:Script>
<![CDATA[
import mx.rpc.events.ResultEvent;
import mx.collections.ArrayCollection;
import mx.collections.XMLListCollection;
import mx.rpc.events.FaultEvent;
import mx.controls.Alert;
private var alert:Alert;
private function httpService_fault(evt:FaultEvent):void {
var title:String = evt.type + " (" + evt.fault.faultCode + ")";
var text:String = evt.fault.faultString;
alert = Alert.show(text, title);
Bezoekers.removeAll();
}
private function httpService_result(evt:ResultEvent):void {
var xmlList:XMLList = XML(evt.result).bezoekers.bezoeker;
Bezoekers = new XMLListCollection(xmlList);
}
]]>
</fx:Script>
<fx:Declarations>
<s:HTTPService id="httpService"
url="http://localhost/projectnieuw/src/data/bezoekersList.php"
resultFormat="e4x"
fault="httpService_fault(event);"
result="httpService_result(event)" />
<!--<fx:Model id="lijstAlleLeden" source="httpAlleLeden" />-->
<!--<s:ArrayCollection id="acBezoekers" source="{Bezoekers}"/>-->
<s:XMLListCollection id="Bezoekers"/>
</fx:Declarations>
<components:Heading/>
<s:HGroup gap="50">
<components:BezoekersList bezoekerList="{Bezoekers}" />
<components:ReservationForm/>
</s:HGroup>
</s:Application>
我似乎没有弄错。
提前致谢
来自比利时的问候
答案 0 :(得分:0)
你的XMLListCollection仍然是 null 意味着Bezoekers = new XMLListCollection(xmlList);
给它null。所以首先尝试跟踪服务器端的结果不为null。要测试服务器端响应,您有一个技巧是,在Web浏览器中打开HTTPService的URL并在Web浏览器中获取XML数据。如果获得成功,请尝试resultFormat="xml"
而不是resultFormat="e4x"
并阅读documentation of HTTPService's result Type以了解如何使用它。它还有一些基于案例的XML解决方案。
愿这对你有帮助......