XML 在 Flex 中给了我 NaN?
尝试将 xml 数据读入变量以将其放入
xml 方案
<akws>
<akw>
<name>test</name>
<_5>534543</_5>
</akw>
</akws>
中,现在我想要 <_5> 中的数字进入 s:Label
private function countpop():void{
popsum = parseInt(xmldata.akw[1]._5);
}
但
<s:Label text={popsum} />
给我 NaN?!
Try to read xml data into a variable to put it out in an
xml scheme
<akws>
<akw>
<name>test</name>
<_5>534543</_5>
</akw>
</akws>
now I want the number in <_5> into an s:Label
private function countpop():void{
popsum = parseInt(xmldata.akw[1]._5);
}
but
<s:Label text={popsum} />
gives me NaN?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 是零索引的,并且 _5 也是一个元素。
要引用 _5 中的 int,请使用以下代码:
这是我的测试以确认:
XML is zero indexed and also _5 is an element.
To refer to the int inside _5, use this code:
Here's my test to confirm: