我的 xml 结构是这样的,
<items>
<item>
<brand>
<id> 3 </id>
</brand>
<product>
<productType>Type 1</productType>
</product>
</item>
<item>
<brand>
<id> 4 </id>
</brand>
<product>
<productType>Type 2</productType>
</product>
</item>
</items>
如果用户提供品牌 ID,我需要获取产品类型值。例如,如果用户输入品牌 id 3,那么我需要返回产品类型Type 1
我尝试使用 Xpath 表达式
/items/item/brand[id = 3]/product/productType
但它不起作用。什么是正确的 xpath 表达式。