8
<authentication password="turkey" partnerid="exam" />
我怎麼可以聲明在XML模式這個元素?
我有:
<xs:element name="authentication" type="auth_type" />
<xs:complexType name ="auth_type">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="password" type="xs:string" />
<xs:attribute name="partnerid" type="xs:string" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
,但將允許元素有文本內容,會嗎?我不想說......
我想XS:擴展名是允許元素具有屬性... – Mirko 2012-01-11 13:07:30
@Mirko - 在您的示例中,您必須使用'xs:extension'來擴展'xs:simpleContent','xs:simpleContent'是允許文本在您的元素中的內容。 – 2012-01-11 15:10:11