簡體   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