如何读取 PowerApp 中的环境变量?
How to read Environment Variables in a PowerApp?
我正在寻找有关如何在 PowerApp 中读取环境变量的快速示例。 https://docs.microsoft.com/en-gb/powerapps/maker/common-data-service/environmentvariables
我已经在我的环境中设置了变量。我如何简单地在 PowerApp 中读取它并在文本标签中显示当前值?
解决这个问题有两个步骤:
- 将 "Environment Variables Values" CDS 实体添加到应用程序的数据源
设置标签文本的值为:
LookUp('Environment Variable Values', 'Environment Variable Definition'.'Schema Name' = "test_environment_data").Value
我正在寻找有关如何在 PowerApp 中读取环境变量的快速示例。 https://docs.microsoft.com/en-gb/powerapps/maker/common-data-service/environmentvariables
我已经在我的环境中设置了变量。我如何简单地在 PowerApp 中读取它并在文本标签中显示当前值?
解决这个问题有两个步骤:
- 将 "Environment Variables Values" CDS 实体添加到应用程序的数据源
设置标签文本的值为:
LookUp('Environment Variable Values', 'Environment Variable Definition'.'Schema Name' = "test_environment_data").Value