我有一个想要使用TileList显示的关联数组。但是,它并不了解正在喂它的是什么。我得到的只是TileList中的[object]。
[bindable]
public var people as array = new array();
private function loadArray():void{
people = decoded JSON array
showPeople.dataProvider = people;}
<mx:Tilelist id="showPeople" labelField="{data.name}" iconField="{data.imgURL}"/>
我尝试使用mx:itemRender,但它只会呈现一个且只有一个项目,即人名的字符串或网址的图像。最终目标是让TileList使用数组中的URL以及它们的名称作为标签来显示人物的图片。有什么建议吗?
阵列看起来像这样 'name'=&gt;一个人的名字串 'img'=&gt; img URL的字符串
答案 0 :(得分:0)
您应该使用自定义项呈示器,如下所示:
<mx:itemRenderer>
<mx:Component>
<mx:HBox>
<mx:Text width="100" height="100" text="{data.name}"/>
<mx:Image width="100" height="100" source="{data.imgURL}"/>
</mx:HBox>
</mx:Component>
</mx:itemRenderer>
通过这种方式,您可以根据需要自定义列表项。