xml – XSD属性(不是元素)不应该是空字符串

前端之家收集整理的这篇文章主要介绍了xml – XSD属性(不是元素)不应该是空字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > XSD Element Not Null or Empty Constraint For Xml?5个
我需要在下面定义的模式中做出哪些更改,以便名称代码属性不应该是空字符串/验证代码是否为空?
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:attribute name="code" type="xsd:string"/>
    <xsd:element name="Root">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:element name="Child" nillable="false">
                    <xsd:complexType>
                        <xsd:sequence>
                            <xsd:element name="childAge">
                                <xsd:simpleType>
                                    <xsd:restriction base="xsd:integer"/>
                                </xsd:simpleType>
                            </xsd:element>
                        </xsd:sequence>
                        <xsd:attribute ref="code" use="required"></xsd:attribute>
                    </xsd:complexType>
                </xsd:element>
            </xsd:sequence>
        </xsd:complexType>
</xsd:element>
键入xsd:string类型包含空字符串,因此使用
<Child code="">

根据您的架构有效.有几种方法可以限制类型.如果您只想限制可以使用的长度:

<xsd:attribute name="code">
    <xsd:simpleType>
        <xsd:restriction base="xsd:string">
            <xsd:minLength value="1"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:attribute>

或者,您可以使用不包含空字符串的类型作为有效类型,例如:

<xsd:attribute name="code" type="xsd:NMTOKEN" />

它也不允许使用特殊字符或空格.如果您的代码需要特定模式,则可能需要在正则表达式中指定该模式,例如:

<xsd:restriction base="xsd:string">
    <xsd:pattern value="[A-Z][0-9]{4}"/>
</xsd:restriction>

这也不会验证空字符串.

原文链接:https://www.f2er.com/xml/292472.html

猜你在找的XML相关文章