在MS Flow中,如何遍历数组并从数组中提取值?

时间:2019-04-22 21:38:25

标签: ms-flow

我有以下格式的http休息结果:

{
    "type": "object",
    "properties": {
        "page": {
            "type": "object",
            "properties": {
                "total": {
                    "type": "integer"
                }
            }
        },
        "list": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string"
                    },
                    "type": {
                        "type": "string"
                    },
                    "status": {
                        "type": "string"
                    }
                },
                "required": [
                    "id",
                    "type",
                    "status"
                ]
            }
        }
    }
}

我试图遍历“列表”中的每个项目并提取ID,类型,状态。如何在MS Flow中做到这一点?这是我得到的:

MyFlow

您可以看到变量不在动态内容选择器中,如何显示它?

0 个答案:

没有答案