电话号码的XSD限制出错

时间:2013-05-08 04:07:37

标签: xml xsd

这是我的架构。我在XML Doc。

中创建了一个属性
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://xml.netbeans.org/schema/ThueBao"
        xmlns:tns="http://xml.netbeans.org/schema/ThueBao"
        elementFormDefault="qualified">

<xsd:simpleType name="tTen">
    <xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="tSDT">
    <xsd:restriction base="xsd:ID">
        <xsd:pattern value="[0]{1}[0-9]{9}[0-9]*"/>
    </xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="tSDTGoiDi">
    <xsd:restriction base="xsd:string">
        <xsd:pattern value="[0]{1}[0-9]{9}[0-9]*"/>
    </xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="tDiaBan">
    <xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="tThoiGianGoi">
    <xsd:restriction base="xsd:duration"/>
</xsd:simpleType>
<xsd:complexType name="tThueBao">
    <xsd:sequence>
        <xsd:element name="HoTen" type="tns:tTen"></xsd:element>
        <xsd:element name="DiaBan" type="tns:tDiaBan"></xsd:element>
        <xsd:element name="SoDienThoaiGoiDi" type="tns:tSDTGoiDi"></xsd:element>
        <xsd:element name="ThoiGianGoi" type="tns:tThoiGianGoi"></xsd:element>
    </xsd:sequence>
    <xsd:attribute name="SDT" type="tns:tSDT"/>
</xsd:complexType>
<xsd:element name="DSThueBao">
    <xsd:complexType>
        <xsd:sequence>
            <xsd:element name="ThueBao" type="tns:tThueBao"></xsd:element>
        </xsd:sequence>
    </xsd:complexType>
</xsd:element>

这是我的xml。

<ns0:ThueBao SDT="0984224932">
    <ns0:HoTen>Pham Tuan Manh</ns0:HoTen>
    <ns0:DiaBan>Ha Noi</ns0:DiaBan>
    <ns0:SoDienThoaiGoiDi>01635981989</ns0:SoDienThoaiGoiDi>
    <ns0:ThoiGianGoi>PT2M</ns0:ThoiGianGoi>
</ns0:ThueBao>

在验证时,NetBeans始终显示此错误:

cvc-datatype-valid.1.2.1: '0984224932' is not a valid value for 'NCName'. [15] 
cvc-attribute.3: The value '0984224932' of attribute 'SDT' on element 'ns0:ThueBao' is not valid with respect to its type, 'tSDT'. [15] 

我的xml中有两个电话号码。第二个被接受,但第一个。我不知道这是怎么发生的。 我该如何解决这个问题呢? 提前谢谢!

1 个答案:

答案 0 :(得分:1)

你已经根据限制xs:ID的模式声明了SDT,而这又限制了xs:NCName; xs:NCName必须以字母开头(松散地说)。它不能以数字开头(这是你的正则表达式所要求的) - 所以没有任何值可以匹配这种类型。

第二个电话号码被定义为xs:string的限制,因此一个可以。

我不知道您是否知道模式[0]{1}[0-9]{9}[0-9]*可以简化为0[0-9]{9,}