使用命名空间 XML
我得到了一个 xml 结构:
<xml>
<variable>
<values>
<enum>
<value>2</value>
<level>high</level>
</enum>
<enum>
<value>1</value>
<level>medium</level>
</enum>
<enum>
<value>0</value>
<level>low</level>
</enum>
</values>
</variable>
</xml>
现在,我将其传递给 dataProvider:
namespace degro ="http://www.degro.org/td"; 使用命名空间 degro; //这是绑定命名空间
dg.dataProvider = new XMLListCollection(xml.variable.value.enum);
dg 数据网格的数据字段是值和级别
,但当我运行程序时它不会显示。
以前有人经历过这种情况吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是来自 Adobe 端的有用链接使用 XML 命名空间,
您可以还需要阅读QName
对象代表 XML 元素和属性的限定名称
希望有帮助
This is Useful link from Adobe Side Using XML namespaces
you may also need to read about QName
an objects represent qualified names of XML elements and attributes
Hope that helps
您发布的 XML 不标识名称空间。我不是一个动作脚本人员,但在其他编程语言中,如果您没有指定正确的名称空间,序列化器将无法生成输出。
您可能应该更新您的 XML 以包含命名空间定义(即> 或者您应该将您的提供程序设置为使用空白/空命名空间。
The XML you posted does not identify a namespace. I'm not an actionscript guy, but in other programming languages if you don't specify the correct namespace the serializer is not going to be able to generate output.
You should probably either update your XML to include a namespace definition (i.e.
<xml xmlns="http://www.degro.org/td"
> or you should set-up your provider to use a blank/empty namespace.这就是在 flex 中访问命名空间 XML 的方式
This is how you should access a namespaced XML in flex
这对我有用。检查一下并告诉我是否有帮助
This worked for me.Check it out and let me know if that helps