验证 RelaxNG 中的 URI 不为空
我试图验证一个元素在 RelaxNG 中始终具有 href 属性,并假设您可以这样做:
<attribute name="href">
<data type="anyURI"/>
</attribute>
唯一的问题是,显然 anyURI 认为空字符串有效,因此 href=""
出色地通过了。有什么简单的方法可以解决这个问题吗?
I'm trying to validate that an element always has an href attribute in RelaxNG, and assumed you could do it with this:
<attribute name="href">
<data type="anyURI"/>
</attribute>
Only catch is, apparently anyURI considers empty strings to be valid, so href=""
passes with flying colors. Is there any easy way to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
minLength
方面。例如:另请参阅 http://www.w3.org/TR/xmlschema-2 /#anyURI
You can use the
minLength
facet. For example:See also http://www.w3.org/TR/xmlschema-2/#anyURI