0

从以下 XML 中过滤出两个描述值的正确 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。

您还需要确保在 XPath 上下文中声明了 xsi 命名空间。

于 2012-07-26T11:44:06.707 回答