我在使用XSD keyref验证方面遇到了一些麻烦,应该可以轻松运行。 这是我的XML:
<Configuration>
<Dependencies>
<Dependency name="python"></Dependency>
</Dependencies>
<Plugins>
<Plugin>
<Dependencies>
<Dependency name="python"></Dependency>
</Dependencies>
</Plugin>
</Plugins>
</Configuration>
现在我的架构(请不要使用Configuration元素中的key.keyref对):
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Configuration">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="1">
<xs:element name="Dependencies" type="DependenciesType"></xs:element>
<xs:element name="Plugins">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="Plugin" type="PluginType" minOccurs="1" maxOccurs="unbounded"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:key name="kDependency">
<xs:selector xpath="./Dependencies/Dependency"></xs:selector>
<xs:field xpath="@name"></xs:field>
</xs:key>
<xs:keyref name="krPluginDependency" refer="kDependency">
<xs:selector xpath="./Plugins/Plugin/Dependencies/Dependency"></xs:selector>
<xs:field xpath="@name"></xs:field>
</xs:keyref>
</xs:element>
<!-- Now the Dependencies types -->
<xs:complexType name="DependenciesType">
<xs:sequence>
<xs:element minOccurs="1" maxOccurs="unbounded" name="Dependency" type="DependencyType"></xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="DependencyType">
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
<!-- And the plugin type -->
<xs:complexType name="PluginType">
<xs:sequence>
<xs:element name="Dependencies" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="1">
<xs:element name="Dependency" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="name"></xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>
插件依赖项名称必须引用配置依赖项名称。我按照这里的教程来检查我是不是傻瓜(http://zvon.org/xxl/XMLSchemaTutorial/Output/ser_keys_st5.html)。我检查了我的XPath表达式并且它们很好(https://www.freeformatter.com/xpath-tester.html)。
当我尝试验证我的XML文件时:
找不到元素'Configuration'的标识约束的值为'python'的'krPluginDependency'。
我不知道问题出在哪里。
答案 0 :(得分:0)
好的,这真是荒谬的错误。
在PluginType
Dependency
类型中,属性name
需要一种类型。在我的情况下,它是type="xs:string"
,它工作正常。