2013-02-14 91 views
1

如果我希望元素具有可變屬性名稱,計數和值,那麼元素complexType的外觀如何?在xml架構中允許可變元素屬性

<mtd:attributes icon="remove" security="D" variable1="F" variable2="D"/> 

我想:

 <xsd:element name="attributes"> 
      <xsd:complexType> 
       <xsd:anyAttribute/> 
      </xsd:complexType> 
     </xsd:element> 

但它並沒有這樣做。

回答

1

嘗試添加processContents=skip

+0

在哪裏?到anyAttribute?它只接受id,namespace和processContents屬性 – lisak 2013-02-14 10:37:42

+0

processContents = skip – iTech 2013-02-14 10:41:27

1

我最後用使它:

<xsd:anyAttribute processContents="skip"/> 
相關問題