1

好吧,我一直在用我的头撞这个很久,我想我的大脑已经严重受损,以至于忘记了莎士比亚。没关系,我不怎么用他。这是我的问题。

我在 xml 文档的顶部有一个水果列表。这就是所谓的“查找表”。

然后我在下面构建一个菜单系统。每个菜单可以有更多菜单或产品列表。这些产品必须与顶部的水果相对应。

我已经能够确认正在填充水果列表,甚至可以获得 keyref 来验证菜单的一级。但我无法让它验证整个菜单树。我已经标记了我尝试使用 keyref 运行的位置<!-- KEY FAIL -->

我正在使用 xmllint 进行验证。如果我在其中使用 // 执行任何 xpath,我会得到“无法编译”。

这是示例 xml:

<Snarf xmlns="" xsi:noNamespaceSchemaLocation="mySchema.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <Fruit name="apple" />
   <Fruit name="orange" />
   <Fruit name="watermelon" />

   <Blarg>
       <Menu name="Top Menu">
           <Menu name="Skillz">
               <Menu name="Juizy">
                   <Product>orange</Product>
                   <Product>watermelon</Product>
               </Menu>
               <Menu name="nutty">
                   <Product>orange</Product>
               </Menu>
           </Menu>
           <Menu name="Applz">
               <Product>apple</Product>
           </Menu>
       </Menu>
   </Blarg>
</Snarf>

这是xsd:

<xs:complexType name="productmenu">
<xs:choice minOccurs="1" maxOccurs="1">
    <xs:choice minOccurs="1" maxOccurs="unbounded">
        <xs:element name="Menu" type="productmenu">
            <!-- KEY FAIL -->
            <!-- <xs:keyref name="subMenuProductRef" refer="productNumber">
                <xs:selector xpath="Menu"/>
                <xs:field xpath="Product"/>
            </xs:keyref> -->
        </xs:element>
    </xs:choice>
    <xs:choice minOccurs="1" maxOccurs="unbounded">
        <xs:element name="Product" type="xs:integer"
            minOccurs="1" maxOccurs="unbounded"/>
    </xs:choice>
</xs:choice>
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>

<xs:element name="Snarf">
    <xs:complexType>
        <xs:choice minOccurs="0" maxOccurs="unbounded">

<xs:element name="Fruit" maxOccurs="unbounded" minOccurs="1" type="string"/>

<xs:element name="Blarg" maxOccurs="unbounded" minOccurs="0">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="Menu" type="productmenu"
                maxOccurs="unbounded" minOccurs="1">

                <!-- KEY FAIL -->
                <!-- <xs:keyref name="subMenuProductRef" refer="productNumber">
                    <xs:selector xpath="Menu"/>
                    <xs:field xpath="Product"/>
                </xs:keyref>-->
            </xs:element>
        </xs:sequence>
        <xs:attribute name="name" type="xs:string" use="required" />
    </xs:complexType>

    <!-- KEY FAIL -->
    <!-- <xs:keyref name="menuProductRef" refer="productNumber">
        <xs:selector xpath="Menu"/>
        <xs:field xpath="Product"/>
    </xs:keyref> -->
</xs:element>

        </xs:choice>
    </xs:complexType>

    <xs:key name="productNumber">
        <xs:selector xpath="./Product"/>
        <xs:field xpath="@num"/>
    </xs:key>
    <!-- KEY FAIL -->
    <!-- <xs:keyref name="menuProductRef" refer="productNumber">
        <xs:selector xpath="./Blarg/Menu"/>
        <xs:field xpath="Product"/>
    </xs:keyref> -->
</xs:element>
4

1 回答 1

0

The selector is relative to its context, so with the keyRef inside Menu, the selector would the Product and the field within the selector is just .:

 <xs:element name="Menu" type="productmenu">
     <xs:keyref name="subMenuProductRef" refer="productNumber">
         <xs:selector xpath="Product"/>
         <xs:field xpath="."/>
     </xs:keyref>
 </xs:element>

Your xs:key needs to be more like:

<xs:key name="productNumber">
    <xs:selector xpath="./Fruit"/>
    <xs:field xpath="@name"/>
</xs:key>

but I'm guessing you just didn't sanitize it for the example like the other parts.

于 2011-04-23T14:25:20.973 回答