gpt4 book ai didi

azure - 使用 Azure 逻辑应用 HTTP 连接器返回的 JSON

转载 作者:行者123 更新时间:2023-12-03 02:39:50 26 4
gpt4 key购买 nike

我创建了一个 HTTP

它的 Body 属性返回 JSON 哈希:

{
"data": [
{
"id": 123456,
"fullname": "Last, First",
"code": null,
"status": 1,
"self": "https://api.xxx.com/rest/v1.0/xxx/123456",
"limits": null,
"accumulated": null,
"custom_data_field": [
{
"id": 4,
"label": null,
"value": null
},
{
"id": 5,
"label": null,
"value": null
},
{
"id": 6,
"label": null,
"value": null
}
],
"access_groups": []
}
],
"meta": {
"previous": null,
"total": 1,
"per_page": 50,
"next": "https://api.xxx.com/rest/v1.0/xxx?page%5Bnumber%5D=2"
}
}

我想循环 data 元素中的每个项目。

下一步是什么? 初始化变量附加到数组变量?无论哪种情况,获取每个元素(例如 data.fullname)值的语法是什么?

最佳答案

正如您在问题中所描述的,如果您想循环 data 元素中的项目,您只需使用“Parse JSON ”操作来解析整个 json 字符串。比如下面的截图(在截图中我初始化了一个名为“source”的变量,它存储你的json字符串来模拟你的情况) enter image description here

在“解析 JSON”操作中,请点击“使用示例负载生成架构”按钮并输入您的 json 字符串,它将自动生成架构。

然后添加“For each ”循环并使用“Parse JSON”中的“数据”作为循环的元素。 enter image description here

在“Foreach”中,您可以使用数据中的任何元素,如上面的屏幕截图所示。

关于azure - 使用 Azure 逻辑应用 HTTP 连接器返回的 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61680652/

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