XML 架构 - 使空元素无效

发布于 2024-11-30 17:17:03 字数 592 浏览 0 评论 0原文

应该很简单,但我在任何地方都找不到这方面的任何信息。我想要一些简单的元素,因此如果某些元素为空,则 XML 无效。我尝试过使用 nillable 属性,但这不起作用。我必须对所需的字符数添加限制,然后删除空格才能使其正常工作,但这似乎很冗长,我是否遗漏了一些东西?

例如。

       <xsd:element name="productImageURL">
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
                                    <xsd:minLength value="1"/>
                <xsd:maxLength value="450"/>
                <xsd:whiteSpace value="collapse"/> 
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>

Should be simple but I cannot find any information on this anywhere. I want to make some simple elements required, therefore invalidate the XML if some of the elements are empty. I have tried using the nillable attribute but this does not work. I have had to add limitations to the number of characters needed and then remove white space to get this working but it seems really lon winded, am I misssing something?

eg.

       <xsd:element name="productImageURL">
          <xsd:simpleType>
            <xsd:restriction base="xsd:string">
                                    <xsd:minLength value="1"/>
                <xsd:maxLength value="450"/>
                <xsd:whiteSpace value="collapse"/> 
            </xsd:restriction>
          </xsd:simpleType>
        </xsd:element>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

假面具 2024-12-07 17:17:03

XML 模式就是这样。另一种选择可能是使用 xsd:pattern 方面...但可读性比您所做的方式要好得多;大多数人很难阅读正则表达式等模式......

It is the way it is with the XML Schema. Another option could be to use the xsd:pattern facet... Readability though is much better the way you've done it; most people struggle reading patterns such as regular expressions...

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