我正在用 kony 解析一个 Web 服务,它给了我以下格式的结果:
<?xml-stylesheet href="/v1/xsl/xml_pretty_printer.xsl" type="text/xsl"?><products canonicalUrl="/v1/products(search="hdmi")?apiKey=przdaw9nuqfefhavq3ud4tfh" currentPage="1" from="1" partial="false" queryTime="0.005" to="10" total="2241" totalPages="225" totalTime="0.087">
<product>
.....
.....
</product>
<product>
.....
.....
</product>
<product>
.....
.....
</product>
<product>
.....
.....
</product>
</products>
我将输出参数配置为将 Xpath 的根设置为//products并从产品名称中获取特定项目,我使用了product/name。响应非常完美。
现在我想获取诸如currentPage="1"和totalPages="225"之类的根级元素以用于分页,但我不能这样做。
但不幸的是,这样我无法访问currentPage属性。
请帮忙。