应用程序变得很慢?
过滤和分配 XML 数据的不同方法有哪些 来控制。当我使用以下命令执行此操作时,我的应用程序会显示 数组和循环??
What are different approaches to filter and assign XML data
to controls. my application get show when I do this using
Array and looping??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这有帮助。将来尝试更具体地回答您的问题。
使用 for 循环迭代 XML 的节点,如下所示:
您可以使用括号运算符(和)来过滤具有特定元素名称或属性值的元素。考虑以下 XML 对象:
以下表达式均有效:
请参阅 http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_04.html
了解更多信息。
Hope this helps. In the future try to be a bit more specific with your questions.
Use a for loop to iterate through nodes of the XML, as follows:
You can use the parentheses operators-- ( and ) --to filter elements with a specific element name or attribute value. Consider the following XML object:
The following expressions are all valid:
See http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_04.html
for more information.