gpt4 book ai didi

json - Azure 将 XML 转换为 JSON

转载 作者:行者123 更新时间:2023-12-02 07:47:04 40 4
gpt4 key购买 nike

我正在尝试使用 Azure 液体映射将以下 XML 转换为 JSON,以查找 session ID。

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<LogInResponse xmlns="http://tempuri.org/RLXSOAP19/RLXSOAP19">
<LogInResult>
<ExceptionCode>0</ExceptionCode>
<ExceptionDescription>No error</ExceptionDescription>
</LogInResult>
<SessionID>A VALUE</SessionID>
</LogInResponse>
</soap:Body>
</soap:Envelope>

我正在尝试使用此液体文件来转换 XML 以查找 JSON 中的 sessionID。

{
"Session": "{{content.soap:Envelope.soap:Body.LogInResponse.SessionID}}"
}

这在输出中不返回任何值:

{
"Session": ""
}

有人可以帮我解决这个问题吗?

最佳答案

作为使用液体贴图的替代方法,您可以将 xml 数据包装在 json() 工作流程函数中。该语句如下所示:

@json(xml(outputs('Mock_example_data')))['soap:Envelope']['soap:Body']['LogInResponse']['SessionID']

使用上面的 xml 函数是因为名为 Mock_example_dataCompose 操作的输出采用字符串形式.

关于json - Azure 将 XML 转换为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55027532/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com