将ForEach介体与xpath一起使用如何读取元素名称

时间:2019-01-31 15:01:12

标签: xpath wso2esb

输入以下内容:

{
    "headers": {
        "sessionId": "<websocket id>",
        "methodType": "GET",
        "methodName": "sh/language"
    }
}

如何读取headers json对象中的每个元素名称?

<foreach expression="//headers/*" id="PRD_ITR">
    <sequence>
        <property name="value" expression="//./text()"/>
    </sequence>
</foreach>

以上内容为我提供了值,例如GET。我也想阅读元素名称methodType。我已经尝试过使用name()local-name()的多个xpath组合,但是似乎没有任何效果。

0 个答案:

没有答案