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