ActionScript E4X获取标记属性

时间:2011-04-27 00:49:11

标签: xml actionscript-3 e4x

对于E4X,我是一个真正的新手,所以请耐心等待。我正在开发一个ActionScript 3.0项目,我希望从XML标记中提取所有属性。

我使用了XML.attributes()方法,但只返回每个属性的 /我希望得到所有属性名称给定XML标记的属性值。

有人可以告诉我如何获得这个吗?

感谢您的时间,
spryno724

2 个答案:

答案 0 :(得分:3)

Google is your friend

var xml:XML = <example id='123' color='blue'/>
var attNamesList:XMLList = xml.@*;

trace (attNamesList is XMLList); // true
trace (attNamesList.length()); // 2

for (var i:int = 0; i < attNamesList.length(); i++)
{ 
    trace (typeof (attNamesList[i])); // xml
    trace (attNamesList[i].nodeKind()); // attribute
    trace (attNamesList[i].name()); // id and color
} 

答案 1 :(得分:0)

XML.attributes()不仅返回值,而且只是看到属性的字符串序列化。给定attr = <foo bar="baz"/>.attributes()[0]attr.localname() === "bar"attr.toString() === "baz"