繁体   English   中英

是否可以在逻辑应用程序中使用 Liquid Transform 将 Json 块分配给另一个 Json

[英]Is it possible to assign chunks of Json to another Json using Liquid Transform in Logic Apps

是否可以在逻辑应用程序中使用 Liquid Transform 将 Json 块分配给另一个 Json 对象? 转换的示例输入 json 看起来像这样

{
    "person": {
        "name": "john",
        "age": 20
    }
}

液体贴图看起来像这样

{
"output":{{content.person}}
}

预期的输出看起来像这样

{
    "output": {
        "person": {
            "name": "john",
            "age": 20
        }
    }
}

尝试这个:

在此处输入图片说明

stantest地图内容:

{"output":{{content}}}

此逻辑应用程序的结果:

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM