Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 ((a|b)|(a,b)) 转换为 XSD?
此代码违反“唯一粒子归属”规则:
<xs:choice> <xs:choice> <xs:element ref="a"/> <xs:element ref="b"/> </xs:choice> <xs:sequence> <xs:element ref="a"/> <xs:element ref="b"/> </xs:sequence> </xs:choice>