【发布时间】:2020-10-23 09:01:56
【问题描述】:
是否可以在逻辑应用中使用 Liquid Transform 将 Json 块分配给另一个 Json 对象? Transform 的示例输入 json 如下所示
{
"person": {
"name": "john",
"age": 20
}
}
液体贴图看起来像这样
{
"output":{{content.person}}
}
预期的输出应该是这样的
{
"output": {
"person": {
"name": "john",
"age": 20
}
}
}
【问题讨论】:
-
怎么样?你的问题解决了吗?
标签: json transform liquid azure-logic-apps