gpt4 book ai didi

azure-logic-apps - json 的逻辑应用读取属性存储在变量中

转载 作者:行者123 更新时间:2023-12-03 15:56:20 26 4
gpt4 key购买 nike

我在逻辑应用程序变量中有这个 json。我想“识别”这个 JSON 的属性并进一步使用。如何获取此 id 属性值?

我的 json 是:

{
"id": 1,
"name": "John bright",
"username": "Lily",
"email": "abc@aabc.com",
}

最佳答案

你说你的 json 是一个变量,但你没有提到它存储的类型。

  • 存储为字符串。这样整个json就是一个字符串,不支持select属性。所以你需要用 Parse JSON 将它解析为 Json操作然后您将能够选择属性。关于Parse JSON架构,只需点击 Use sample payload to generate schema并粘贴您的 json 值,它将生成。并选择您的房产只需使用 @{body('Parse_JSON')?['name']} ,它会起作用。

  • enter image description here

    enter image description here
  • 如果将其存储为对象,则更容易执行,只需使用表达式 variables('test1')['name']为拿到它,为实现它。

  • enter image description here

    enter image description here

    关于azure-logic-apps - json 的逻辑应用读取属性存储在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56244766/

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