我如何在不使用 power automate 的情况下在 power apps 中迭代 json 对象
How i cant iterate a json object in power apps without use power automate
我的 power apps 中有一个带有 Microsoft graph api 的自定义连接器,我有一个请求和一个 graph explorer 的响应,现在我的问题是我无法在我的 power apps 中迭代对象table.
OnSelect 代码:
UpdateContext({getrols:graph_demo.GetRols()})
Issue shown in PowerApps
View of API Response
您可以尝试在公式末尾添加 .value
。然后,您可能会将 .appRoles
添加到 .value
以进入嵌套的 JSON.
如有疑问,请在您的公式中添加 .
并利用 IntelliSense 探索您的响应模式。
类似于:ClearCollect(coRols, graph_demo.GetRols().value.appRoles)
此外,请尝试使用图库而不是列表框来显示响应。将图库 Items
属性 设置为 colRols
.
我的 power apps 中有一个带有 Microsoft graph api 的自定义连接器,我有一个请求和一个 graph explorer 的响应,现在我的问题是我无法在我的 power apps 中迭代对象table.
OnSelect 代码:
UpdateContext({getrols:graph_demo.GetRols()})
Issue shown in PowerApps
View of API Response
您可以尝试在公式末尾添加 .value
。然后,您可能会将 .appRoles
添加到 .value
以进入嵌套的 JSON.
如有疑问,请在您的公式中添加 .
并利用 IntelliSense 探索您的响应模式。
类似于:ClearCollect(coRols, graph_demo.GetRols().value.appRoles)
此外,请尝试使用图库而不是列表框来显示响应。将图库 Items
属性 设置为 colRols
.