我试图使用 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"
什么是正确的语法?
我试图使用 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"
什么是正确的语法?
您是否尝试仅选择 1 个area
元素?
如果是这样,area
属性为“aac”且值为“VIC_PT025”的元素在文档中看起来是唯一的,因此您应该擅长//product/forecast/area[@aac="VIC_PT025"]
如果你想测试你可以使用的所有属性//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]
句法
//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]