循环 XMLList - 奇怪的行为

发布于 2024-10-18 20:13:10 字数 448 浏览 6 评论 0 原文

我正在尝试循环遍历 XMLList,而不是以 XML 形式提供列表中的每个项目,而是以字符串形式返回位置,例如

var myList:XMLList = ...(包含 < ;Type>DogCat)

for(var item in myList) {
    Alert.show(item);               
}

它仅提醒“0”或“1”。如果我检查“item”变量,我会看到同样的事情。但如果我检查“myList”,它看起来就像 XML。

我还尝试过 myList.children() 并将“items”强制键入“XML”,但我所做的一切都不起作用。

如果有人能告诉我正确的方法,我将非常感激。

谢谢

I'm trying to loop through an XMLList and rather than giving me each item in the list as XML, it's just coming back with the positions as strings e.g.

var myList:XMLList = ... (contains <Animal><Type>Dog</Type></Animal><Animal><Type>Cat</Type></Animal>)

for(var item in myList) {
    Alert.show(item);               
}

It just alerts "0" or "1". If I inspect the 'item' variable, I see the same thing. But if I inspect 'myList' it looks like the XML.

I've also tried myList.children() and strongly typing 'items' to 'XML' but nothing I do has worked.

Would really appreciate it if someone can tell me the right way to do it.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

墨小墨 2024-10-25 20:13:11

尝试使用下面的代码来获取 Dog 和 Cat。

for each (var item:Object in myList)
            {
                trace(item.children()[0]);
            }

Try the code below to get just Dog and Cat.

for each (var item:Object in myList)
            {
                trace(item.children()[0]);
            }
小霸王臭丫头 2024-10-25 20:13:10

尝试使用 for every 而不是 for

Try for each instead of for

浮生面具三千个 2024-10-25 20:13:10

由于它返回索引,您可以直接在列表中引用它们:

   for(var item in myList) {   
     var xml:XML = myList[item] as XML;
     trace(xml);        
   }

这将打印出以下内容:

<Animal>
  <Type>Dog</Type>
</Animal>
<Animal>
  <Type>Cat</Type>
</Animal>

或者,您可以直接引用每个子元素的元素:

    for (var child : Object in myList.children()) {
      var xml : XML = myList[child];
      trace(xml.Type);
    }

这会导致:

Dog
Cat

As it is returning indexes you can just reference them in the list directly:

   for(var item in myList) {   
     var xml:XML = myList[item] as XML;
     trace(xml);        
   }

This will print out the following:

<Animal>
  <Type>Dog</Type>
</Animal>
<Animal>
  <Type>Cat</Type>
</Animal>

Or, you can reference elements of each child directly:

    for (var child : Object in myList.children()) {
      var xml : XML = myList[child];
      trace(xml.Type);
    }

Which results in:

Dog
Cat
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文