我有以下格式的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中做到这一点?这是我得到的:
您可以看到变量不在动态内容选择器中,如何显示它?