0

次の XML から 2 つの説明値をフィルター処理するための正しい XPath 式は何ですか?

<course>
    <description>This is a description of the course</description>
    <description xsi:type="learning:outcome">This is the description of the learning outcome of the course</description>
</course>

正しいXPathは次のようになると思いました:

//course/description[@xsi:type=""]
//course/description[@xsi:type="learning:outcome"]

しかし、これは XMLSpy や Drupal のインポーターで試してもうまくいきません。

4

1 に答える 1

0

xsi:typeをxsi:pathと間違えたと思います。

また、xsi名前空間がXPathコンテキストで宣言されていることを確認する必要があります。

于 2012-07-26T11:44:06.707 に答える