如何将数据源绑定到 PowerApps 中的下拉列表

How to bind a datasource to a dropdown in PowerApps

如何将数据源绑定到 PowerApps 中的下拉列表。

我已将我的 Azure table 连接到我的 PowerApps 应用程序,以便 table 出现在我的数据源中。

然后我在表单中添加了一个下拉控件。

在我的项目中 属性 我可以对列表值进行硬编码,例如

Table({ColorName:"red"; ID: "1"};{ColorName:"green"; ID: "2"}{ColorName:"blue"; ID: "3"})

但我想 link 它到我的具有 "ID""ColorName" 列的 DataSourceTable 值。

根据这个 help page 我只需要将我的 tablename 放在项目 属性 中,但这不起作用。

解决方案是将显示在数据源下的 table 名称用单引号引起来

'[dbo].[MyTableName]'

尝试

Dropdown1.Items = Distinct(DataSource, ID) for ID Dropdown

Dropdown1.Items = Distinct(DataSource, ColorName) for ColorName Dropdown.

希望对您有所帮助。