验证 RelaxNG 中的 URI 不为空

发布于 2025-01-01 13:29:37 字数 336 浏览 1 评论 0原文

我试图验证一个元素在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2025-01-08 13:29:37

您可以使用 minLength 方面。例如:

<attribute name="href">
  <data type="anyURI">
    <param name="minLength">5</param>
  </data>
</attribute>

另请参阅 http://www.w3.org/TR/xmlschema-2 /#anyURI

You can use the minLength facet. For example:

<attribute name="href">
  <data type="anyURI">
    <param name="minLength">5</param>
  </data>
</attribute>

See also http://www.w3.org/TR/xmlschema-2/#anyURI

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文