0

这是我的架构。我将它作为 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 中有两个电话号码。第二个被接受,但第一个。我不知道这怎么会发生。我该如何解决这个问题?提前致谢!

4

1 回答 1

1

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

第二个电话号码被定义为 xs:string 的限制,这样一个就可以了。

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

于 2013-05-08T07:22:53.340 回答