尝试将xml数据读入变量以将其放在
中xml scheme
<akws>
<akw>
<name>test</name>
<_5>534543</_5>
</akw>
</akws>
现在我想要&lt; _5&gt;中的数字进入s:标签
private function countpop():void{
popsum = parseInt(xmldata.akw[1]._5);
}
但
<s:Label text={popsum} />
给了我NaN?!
答案 0 :(得分:3)
XML是零索引的,_5也是一个元素。
要引用_5中的int,请使用以下代码:
parseInt(xmldata.akw[0]._5[0]);
这是我的确认测试:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<fx:XML id="xmldata">
<akws>
<akw>
<name>test</name>
<_5>534543</_5>
</akw>
</akws>
</fx:XML>
</fx:Declarations>
<fx:Script>
<![CDATA[
[Bindable]
private var popsum:int = 0;
]]>
</fx:Script>
<s:creationComplete>
<![CDATA[
popsum = parseInt(xmldata.akw[0]._5[0]);
]]>
</s:creationComplete>
<s:Label text="{popsum}" />
</s:Application>