如何计算xmldata?

发布于 2024-09-14 11:56:05 字数 616 浏览 5 评论 0原文

我从httpservice(使用cgi)获取xml数据,并且没有设置结果格式(它仅作为对象出现),

<root>
<employee name="xxx" age="xx" gender="xxx"/>
<employee name="xxx" age="xx" gender="xxx"/>
<employee name="xxx" age="xx" gender="xxx"/>
</root>

当我尝试计算员工标签时,这种格式的xml数据,我遇到了问题,我的代码将是这样的:

var i:int=o;
for each(var obj:object in event.result.root.employee)
{
 i++;
}

我得到的计数为3,但问题是,当传入数据时,它给出的计数为3(即)xml数据

<root>
<employee name="xxx" age="xx" gender="xxx"/>
<root>

实际上是我想计算员工标签的数量而不是所有子标签, 我希望你能节省我的时间 提前致谢..

i'm getting the xmldata from the httpservice (using cgi) and i have not set resultformat(it is coming as an object only),the xml data in this format

<root>
<employee name="xxx" age="xx" gender="xxx"/>
<employee name="xxx" age="xx" gender="xxx"/>
<employee name="xxx" age="xx" gender="xxx"/>
</root>

when i was tried to count the employee tag,i getting the problem, my code will like this:

var i:int=o;
for each(var obj:object in event.result.root.employee)
{
 i++;
}

i getting the count as 3 but the problem it give the count as 3 when the coming data i.e)the xml data is

<root>
<employee name="xxx" age="xx" gender="xxx"/>
<root>

actually i want to count the number of employees tag not all subtag ,
i hope you may save my time
Thanks in advance..

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文