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.
我在编写允许我从当前类别中选择节点的 xpath 表达式时遇到问题。简而言之,我有 products 文件夹,这个文件夹包含 categories , categories 包含产品。我的意图是只从我当前位置的树选择器的类别中选择产品。例如,我在名为计算机的类别中,因此我必须能够仅从该类别中选择产品。
任何想法 ?
您可以尝试使用 $currentPage 变量作为 XPath 表达式的起点。类似于以下示例的内容在我脑海中浮现,未经测试,但值得一试:
$currentPage//product
或者
$currentPage/descendant-or-self::Product
如果您发布您当前的 XPath 表达式,它还可以帮助其他人了解您已经在哪里,并提供更具体的帮助。