我想知道如何使用XML和Schema轻松描述多选组合框。 目前我使用这个定义:
<xs:element name="RefPartner">
<xs:complexType>
<xs:attribute name="isSalesRepresentative" type="xs:boolean"/>
<xs:attribute name="isPolicyResponsible" type="xs:boolean"/>
<xs:attribute name="isPolicyCorrespondanceResponcible" type="xs:boolean"/>
<xs:attribute name="isAssetManager" type="xs:boolean"/>
<xs:attribute name="isContactPerson" type="xs:boolean"/>
<xs:attribute name="isLegalRepresentative" type="xs:boolean"/>
</xs:complexType>
但这个解决方案并不好。 请写下您的想法,如何做得更好。感谢。