XSD 用于具有相同名称但不同属性值的重复元素
我正在尝试为以下 XML 片段编写 XSD。
<loop id="1000" name="loop 1000" />
<loop id="1000" name="loop 1000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
我写了下面的 XSD
<xs:element name="loop" maxOccurs="3">
<xs:simpleType>
<xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
</xs:simpleType>
</xs:element>
<xs:element name="loop" maxOccurs="3">
<xs:simpleType>
<xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
</xs:simpleType>
</xs:element>
但这似乎在 XML 验证中失败了。
XML 不在我的控制范围内。我该如何处理这个问题?
编辑:
我编写了一个 xml 解析器+生成器,并将接收到的 XML 更改为类似
<_1000>...</_1000>
<_1000>...</_1000>
<_2000>...</_2000>
<_2000>...</_2000>
<_2000>...</_2000>
现在我可以为此轻松编写 XSD 的内容。
I am trying to write a XSD for the following XML snippet.
<loop id="1000" name="loop 1000" />
<loop id="1000" name="loop 1000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
<loop id="2000" name="loop 2000" />
I wrote the following XSD
<xs:element name="loop" maxOccurs="3">
<xs:simpleType>
<xs:attribute use="required" fixed="1000" type="xs:string" name="id" />
</xs:simpleType>
</xs:element>
<xs:element name="loop" maxOccurs="3">
<xs:simpleType>
<xs:attribute use="required" fixed="2000" type="xs:string" name="id" />
</xs:simpleType>
</xs:element>
But this seems to be failing in XML validation.
The XML is not in my control. How do I handle this?
EDIT:
I wrote a xml parser+generator and changed the received XML to something like
<_1000>...</_1000>
<_1000>...</_1000>
<_2000>...</_2000>
<_2000>...</_2000>
<_2000>...</_2000>
Now I can write the XSD easily for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)