0

从我的逻辑应用程序中,我正在调用 API-1。我需要将此输出作为输入传递给 API-2。

我使用了这个@body('[My_Action_Name]') 和@{body('[Action_Name]')}。但它只是作为我的 API-2 的输出返回。

4

1 回答 1

2

如果您直接在代码视图中创作逻辑应用,那么正确的语法就是 @body('actionName')

作为一个例子,看看下面

    "HttpAction1": {
        "type": "Http",
        "inputs": {
            "method": "GET",
            "uri": "http://www.example.com"
        }
    },
    "HttpAction2": {
        "type": "Http",
        "inputs": {
            "body": "@body('HttpAction1')",
            "method": "POST",
            "uri": "http://www.example2.com"
        }
    }
于 2016-04-30T00:19:03.077 回答