Xpath语法修正

时间:2013-10-30 13:09:19

标签: ios xml xpath

我试图使用gdata来读取这个xml文件: ftp://ftp2.bom.gov.au/anon/gen/fwo/IDV10753.xml

路径是// product / forecast / area aac =“VIC_PT025”description =“Geelong”type =“location”parent-aac =“VIC_PW007”

这是什么语法?

2 个答案:

答案 0 :(得分:0)

您是否只想选择1个area元素?

如果是这样,带有值“VIC_PT025”的属性为“aac”的area元素在文档中看起来是唯一的,所以你应该对//product/forecast/area[@aac="VIC_PT025"]

有好处

如果要测试所有属性,可以使用//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]

答案 1 :(得分:0)

语法

// product / forecast / area [@ aac =“VIC_PT025”和@ description =“Geelong”和@ type =“location”和@ parent-aac =“VIC_PW007”]