如何在XML List Collection中按类别名称对以下XML进行排序
<item id="8" title="Sprouts">
<categories>
<category name="Produce"/>
</categories>
<tags/>
</item>
<item id="7" title="Steak">
<categories>
<category name="Meats"/>
</categories>
<tags/>
</item>
<item id="1" title="Apple">
<categories>
<category name="Fruits"/>
</categories>
<tags/>
</item>
我正在使用XML List Collection,并尝试将SortField()类与collection.sort属性一起使用。
var sort:Sort = new Sort();
var sortField:SortField = new SortField();
sort.fields = [sortField];
myCollection.sort = sort;