Xml下面的Key是什么?
What is Key in below Xml?
我是 xml 解析的新手
你能在下面解释一下什么是键和键命名空间吗xml
<ec:InclusiveNamespaces xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" PrefixList="ds saml samlp xs xsi"/>
提前致谢!!
项键是not defined at the XML level。
在 XML 架构 (XSD) 中,key
是 Identity-constraint Definitions 的一部分,并定义了如何通过 XPath 选择器 assemble 一个唯一标识符和字段声明。但是,既没有证据也没有办法推测您的 XML 是否定义了任何此类键。
根据您的 XML,您可能有兴趣了解 ec
是 命名空间前缀 ,它是 http://www.w3.org/2001/10/xml-exc-c14n#
的缩写,命名空间值。另见
最后一点,InclusiveNamespaces XML element you've posted is used in the Exclusive XML Canonicalization, Version 1.0, Recommendation。
我是 xml 解析的新手
你能在下面解释一下什么是键和键命名空间吗xml
<ec:InclusiveNamespaces xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#" PrefixList="ds saml samlp xs xsi"/>
提前致谢!!
项键是not defined at the XML level。
在 XML 架构 (XSD) 中,key
是 Identity-constraint Definitions 的一部分,并定义了如何通过 XPath 选择器 assemble 一个唯一标识符和字段声明。但是,既没有证据也没有办法推测您的 XML 是否定义了任何此类键。
根据您的 XML,您可能有兴趣了解 ec
是 命名空间前缀 ,它是 http://www.w3.org/2001/10/xml-exc-c14n#
的缩写,命名空间值。另见
最后一点,InclusiveNamespaces XML element you've posted is used in the Exclusive XML Canonicalization, Version 1.0, Recommendation。