我的XML看起来像这样:
<test attri="value">content</test>
我在XML Schema中构建它时遇到了麻烦,因为我无法提供complexType内容,也无法为simpleType提供属性。我觉得应该有一个非常简单的解决方案,我忽略了。
答案 0 :(得分:2)
使用以下内容:
<xs:element name="test ">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="attri" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
答案 1 :(得分:1)
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="test">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="attri" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:schema>