首页 文章

如何将图像发布到powerapps中的Azure存储?

提问于
浏览
0

我在Powerapps中有一组图像,我想将其发送到Azure存储,以便我可以在Azure功能中访问它们 .

我曾尝试使用Create block blob在PowerApps中创建工作流,但我无法在其中使用动态内容 .

那么如何将集合中的所有图像发送到Azure存储?

我这样做,所以我可以在函数中访问这些图像 . 如果有另一种方式,我也可以尝试 . 我只需要在Azure功能中访问它们 .

1 回答

  • 0

    有一个类似于您正在寻找的解决方案,您必须:

    1- Create a custom API to route your images from the source you get them from (Example on article bellow is from camera to Blob)
    2- Test your API locally in Azure Emulator
    3- Publish API to Azure
    4- Register the Custom API in PowerApps:https://docs.microsoft.com/en-us/powerapps/register-custom-api
    

    完整的分步指南可以在这里找到:https://powerapps.microsoft.com/en-us/blog/custom-api-for-image-upload/让我知道这是否有助于艾伦 .

相关问题