我很难搜索这个。我如何在XML的XML模式文件中定义一个元素,如下所示:
<option value="test">sometext</option>
我不知道如何定义一个类型为xs:string的元素,并且还有一个属性。
这里是我到目前为止:
<xs:element name="option"> <xs:complexType> <xs:attribute name="value" type="xs:string" /> </xs:complexType> </xs:element>
尝试
原文链接:https://www.f2er.com/xml/294168.html<xs:element name="option" type="AttrElement" /> <xs:complexType name="AttrElement"> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="value" type="xs:string"> </xs:attribute> </xs:extension> </xs:simpleContent> </xs:complexType>