我的xml与下文一样。
<rat>
<to>tt</to>
<from>ggg</from>
<heading>hhhhh</heading>
<body>jjj</body>
</rat>
我的AS3法典
var example:XML = new XML(event.target.data);
_label.text = example[0].rat[0][nodeName];
addChild(_label);
我想显示像数据一样的数据。
to = tt
from = ggg
如何做到