使用“免费”验证 XML使用 XML 模式的元素
有没有一种方法可以定义 XML 模式,允许模式中未定义的元素? 我有一个 XML 文件,仅需要验证该文件的一部分。像这样:
<?xml version="1.0"?>
<xml>
<ValidatedElement type="PositiveInteger">123</ValidatedElement>
<OtherStuff>
<MemoryUsed type="PositiveInteger">356</MemoryUsed>
<MemoryLeft type="PositiveInteger">44</MemoryLeft>
</OtherStuff>
</xml>
我只想对某些元素进行模式验证(无论 XML 中的位置如何。如果层次结构也可以被忽略 - 那就更好了)
Is there a way to define an XML schema that allows elements not defined in the schema?
I have an XML file that needs validation only on part of the file. like so:
<?xml version="1.0"?>
<xml>
<ValidatedElement type="PositiveInteger">123</ValidatedElement>
<OtherStuff>
<MemoryUsed type="PositiveInteger">356</MemoryUsed>
<MemoryLeft type="PositiveInteger">44</MemoryLeft>
</OtherStuff>
</xml>
I'd like to schema-validate only certain elements (regardless of position in the XML. If hierarchy could also be ignored - even better)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用<任意>指令,您可以定义允许任何内容的位置。如果您想要验证可能存在于未经验证的内容树中任意位置的元素,则必须查找它们并安排对它们进行单独验证。
Using the <any> directive, you can define spots where any content is allowed. If you want to validate elements that can exist in arbitrary positions in a tree of otherwise unvalidated content, you'ld have to look them up and arrange for them to be individually validated.