显示包含XMLListCollection的列表

时间:2011-05-30 18:17:48

标签: flex actionscript flex4 mxml

我是一个Flex noob,上周我一直在努力解决这个问题,而且我的智慧结束了。

我打开了以下XML文件

<root>
<person>
<city-of-death>asdf</city-of-death>
<place-of-death>qwert</place-of-death>
</person>
<person>
<city-of-death>hjkl</city-of-death>
<place-of-death>yuio</place-of-death>
</person>
</root>

使用以下代码

[Bindable]
            private var people:XMLListCollection;
private function resultHandler(event:ResultEvent):void {
                people = new XMLListCollection(event.result.person);
            }

我正在尝试使用以下mxml

来显示它
<s:List left="0" height="94" dataProvider="{people}" labelField="@city-of-death" width="144" y="-1"></s:List>

基本上,我希望有一个列表显示......但没有显示

asdf
hjkl

如果有人可以提供帮助,我会非常感激。我拔出头发了!

1 个答案:

答案 0 :(得分:2)

@符号用于属性。尝试使用类似的东西:

<s:List left="0" height="94" dataProvider="{people}" labelField="city-of-death" width="144" y="-1"></s:List>