小组问题-如何更改其中的一个元素?

时间:2018-10-20 11:18:17

标签: xml xsd

我对小组感到难过。例如:          

<xs:group name="custGroup">
  <xs:sequence>
    <xs:element name="customer" type="xs:string"/>
    <xs:element name="orderdetails" type="xs:string"/>
    <xs:element name="price" type="xs:float" min="3.2"/>
    <xs:element name="shipto" type="xs:string"/>
 </xs:sequence>
</xs:group>

<xs:element name="order" type="ordertype"/>

<xs:complexType name="ordertype">
   <xs:group ref="custGroup"/>
   <xs:attribute name="status" type="xs:string"/>
</xs:complexType>

现在让我们说,在使用该组的一个地方(例如订单类型),我想将步速最小值设置为3.2到4.2。我该怎么办?

0 个答案:

没有答案