我将如何正确定义我的元素 RandomAmount_
//当RandomAmount可以是RandomAmount_1到RandomAmount_N时
<xs:element name="RandomAmount">
<xs:complexType>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element type="xs:float" name="RandomAmount_" />
</xs:choice>
</xs:complexType>
</xs:element>
我觉得应该将 RandomAmount 命名为 =“ RandomAmount_* ”来解决问题,但这不起作用。