如果存在属性,如何匹配元素但避免验证失败?
我有 xml:
<video contenttype="asf" fileextension=".wmv" hascontent="no" lang="en-GB" length="1800" pid="3678738364972" sid="">
<title>A vid with Pete</title>
<description>Petes vid</description>
<contributor>Pete</contributor>
<subject>Cat 2</subject>
</video>
我想使用 xsd 模式验证视频元素是否存在,但我真的不关心它有什么属性(事实上我想忽略这些属性)。我所关心的是存在的视频元素。用xsd可以做到这一点吗?
目前 xsd 是:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="UploadXSD"
elementFormDefault="qualified"
xmlns="http://tempuri.org/UploadXSD.xsd"
xmlns:mstns="http://tempuri.org/UploadXSD.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="video">
<xs:complexType>
<xs:sequence>
<xs:element name="title" minOccurs="1" type="xs:string"></xs:element>
<xs:element name="description" type="xs:string"></xs:element>
<xs:element name="contributor" type="xs:string"></xs:element>
<xs:element name="subject" type="xs:string"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
I have the xml:
<video contenttype="asf" fileextension=".wmv" hascontent="no" lang="en-GB" length="1800" pid="3678738364972" sid="">
<title>A vid with Pete</title>
<description>Petes vid</description>
<contributor>Pete</contributor>
<subject>Cat 2</subject>
</video>
And I want to validate the video element is present using an xsd schema but I really dont care what attributes it has (in fact I want to ignore the attributes). All I care about is the video element being present. Is it possible to do this with xsd?
Currently the xsd is:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="UploadXSD"
elementFormDefault="qualified"
xmlns="http://tempuri.org/UploadXSD.xsd"
xmlns:mstns="http://tempuri.org/UploadXSD.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="video">
<xs:complexType>
<xs:sequence>
<xs:element name="title" minOccurs="1" type="xs:string"></xs:element>
<xs:element name="description" type="xs:string"></xs:element>
<xs:element name="contributor" type="xs:string"></xs:element>
<xs:element name="subject" type="xs:string"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只需在
complexType
元素中的序列后面指定xs:anyAttribute
即可:这里是 链接.Yes, just specify
xs:anyAttribute
in yourcomplexType
element, after the sequence: here's a link.