我試圖從XML文件中填充與國家/地區的組合框。不幸的是,組合框沒有被填滿。我應該如何解決這個問題?提前致謝!在Flex中使用XML填充組合框
這裏是我的代碼:
protected function navigatorcontent2_creationCompleteHandler(event:FlexEvent):void
{
fillCboCountries.addEventListener(ResultEvent.RESULT, fillCombobox);
fillCboCountries.send();
}
protected function fillCombobox(event:ResultEvent):void
{
cboCountries.dataProvider=event.result.global.countryItem;
}
<fx:Declarations>
<s:HTTPService id="fillCboCountries" url="https://marnixcoosemans2013.dreamhosters.com/scripts/countries_select.php"/>
</fx:Declarations>
<s:ComboBox id="cboCountries" x="10" y="414" width="173" labelField="countryLabel"/>
你可以發佈你的XML結構嗎?實際數據的路徑可能存在問題。 – Anton
嗨,我的XML是這樣的: ............. 阿富汗 countryLabel> countryItem> ... ........... 阿爾巴尼亞 countryLabel> countryItem> .................. ..... –
user1930785