Flash 中的动态 xml 读取
我想读取从 php 脚本返回的 flash 中的 xml 文件。 我对所有内容进行了排序,除了
每一行中返回的属性有所不同(从 1 到 100 的任何属性)。
下面是解释我的意思的代码,
for(var ii:int = 0; ii < tempXML.record.length(); ii++)
{
for(var b:int = 0; b < numAttributes; b++)
{
//what i am aiming for here is the ability to have @"arr"+ a number here
trace(tempXML.record[ii].@arr+numAttributes);
}
}
希望你能明白我的意思。 任何帮助表示赞赏 干杯 标记
i want to read an xml file in flash that is returned from a php script. i have it all sorted apart from one thing
the attributes that are returned in each row vary (anything from 1 to 100).
below is the code to explain what i mean
for(var ii:int = 0; ii < tempXML.record.length(); ii++)
{
for(var b:int = 0; b < numAttributes; b++)
{
//what i am aiming for here is the ability to have @"arr"+ a number here
trace(tempXML.record[ii].@arr+numAttributes);
}
}
hopfully you can see what i am getting at. any help apprechiated
Cheers
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法让它工作发现了 attribute() 并对它进行了排序,因此下面的内容很好地满足了我的
需求
标记
i managed to get it working discovered attributes() and that sorted it so the below worked well for my needs
Regards
Mark