Power Automate - 无法使用解析 JSON 输出

问题描述 投票:0回答:1

我正在尝试使用 Power Automate 获取由

employeeID
检索但未作为动态内容提供的
Get user profile (V2)
字段。 此问题的答案中概述了此方法。

我创建了一个流程,如下所示: screen capture of flow

对于

Parse JSON
块,我尝试使用
Compose
块的输出或
User from Graph API
Get user profile (V2)
输出。
Parse JSON
模式中捕获的各个数据项在后续块中显示为动态内容。

但是,我似乎无法实际使用

Parse JSON
的输出。 当我运行流程时,测试屏幕清楚地显示
Parse JSON
有效,因为我在“输出”屏幕中看到了正确的数据:
Output from Parse JSON Block

但是,当我通过动态内容将任何这些输出添加到后续块时,数据似乎为空。 我尝试将它们添加到

Send an email (V2)
块和列表中的
Update Item
块(我最初的目标)。 在这两种情况下,我都没有得到
Parse JSON
处理过的任何实际数据。

我是否遗漏了一个步骤,或者误解了

Parse JSON
的工作原理?

json sharepoint active-directory power-automate
1个回答
0
投票

尝试使用公式而不是动态内容访问数据。

body('YourParseJSONStepName')?['givenName']

© www.soinside.com 2019 - 2024. All rights reserved.