XML模式:具有此名称模式的元素具有此属性

时间:2018-11-03 18:01:18

标签: xml xsd xsd-validation

我有这个XML示例。

<root>
  <Ilhas_da_Madeira_e_Porto_Santo update-date="2016-04-01" update-time="14:14:46">
    <Santana update-author="sourceData" update-date="2016-04-01" update-time="14:14:48">
      <year1995 ncrimes="33"/>
      <year1994 ncrimes="58"/>
      <year1993 ncrimes="33"/>
    </Santana>
  </Ilhas_da_Madeira_e_Porto_Santo>
  <NE update-date="2016-04-01" update-time="14:14:48">
    <NE update-author="sourceData" update-date="2016-04-01" update-time="14:14:48">
      <year1995 ncrimes="163"/>
      <year1994 ncrimes="125"/>
      <year1993 ncrimes="126"/>
    </NE>
  </NE>
</root>

(XML模式-xsd) 我已经在用xs:groupxs:attributeGroup对元素和属性进行分组。

问题: 是否可以这样做:elements with name_pattern="year(\d){4}" have attribute=ncrimes

1 个答案:

答案 0 :(得分:0)

XML Schema的设计不鼓励这样的XML词汇设计。通常,具有这样的内部结构的元素或属性名称是不好的形式。而不是

<year1995 ncrimes="163"/>

您应该使用类似

<year y="1995" ncrimes="163"/>

通过这种设计,您会发现XML堆栈中的所有内容(不仅是XML Schema,还包括XSLT,XPath和DOM之类的东西)工作起来都更加顺畅。

但是,如果您不能或不会更改词汇表设计,那么您的下一个最佳选择是使用name="year"abstract="true"定义元素声明,然后定义元素{{1} },year1995等作为year1994替换组中的元素。