使用 xerces 从架构中获取元素的默认值 (C++)
假设我有一个定义元素的架构,如下所示:
<xsd:element name="Widget" type="tns:WidgetType" />
<xsd:complexType name="WidgetType">
<xsd:sequence>
<xsd:element name="Name" type="xsd:normalizedString" maxOccurs="1" minOccurs="1" />
<xsd:element name="Description" type="xsd:normalizedString" default="Unknown" maxOccurs="1" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
我正在解析(DOM 解析器)一个 XML 文件,该文件已使用 Xerces-C++ 针对该架构进行了验证。如果存在 Description
元素,我知道如何通过迭代给定 Widget
的 DOMElement
的所有子元素并使用来读取它找到 Description
元素后的 DOMElement::getTextContent()
。
但是,如果特定的 Widget
元素没有 Description
子元素(架构允许),我如何获取默认值(Unknown< /code>) 来自模式?
感谢您的回复, 阿什什
Say I have a schema which defines an element as follows:
<xsd:element name="Widget" type="tns:WidgetType" />
<xsd:complexType name="WidgetType">
<xsd:sequence>
<xsd:element name="Name" type="xsd:normalizedString" maxOccurs="1" minOccurs="1" />
<xsd:element name="Description" type="xsd:normalizedString" default="Unknown" maxOccurs="1" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
I'm parsing (DOM parser) an XML file that has been validated against this schema using Xerces-C++. If the Description
element is present, I know how to read it by iterating through all the child elements of the DOMElement
for a given Widget
and using DOMElement::getTextContent()
upon finding the Description
element.
But, if a particular Widget
element does not have a Description
child element (which is allowed by the schema), how can I fetch the default value (Unknown
) from the schema?
Thanks for your responses,
Ashish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 XPath 或 XQuery 查询架构文档以从架构文档中获取任何值。 Xerces 网站表示它有部分 XPath 支持,如果您需要更多功能,还列出了 Xalan 和 XQilla。
You should be able to use XPath or XQuery to query the schema document to grab any values off of the schema document. Xerces site says it has partial XPath support, and lists Xalan and XQilla if you need more power.