- 入门指南
- 在开始之前
- 如何
- 通知
- 使用 VB 表达式
- 设计应用程序
- 事件和规则
- 在应用程序中利用 RPA
- 在应用程序中利用实体
- 在应用程序中引用实体
- 替换实体
- 使用选项集
- 在标签中显示实体字段的值
- 将 Apps 与 Data Service 结合使用
- 在应用程序中利用队列
- 应用程序生命周期管理 (ALM)
- 基本故障排除指南

Apps 用户指南
- 在运行时最多可为任何筛选器检索 1000 条记录。
- 加载实体数据后,仅在执行规则时才会刷新数据。 通过流程或其他方式对实体所做的任何更改都不会在 Apps 中自动更新。 请务必在这些场景中显式刷新数据。
in
运算符仅支持原始数据类型,例如:string
、number
、boolean
、null
。
choice-set
的 Data Service 方案中不支持in
运算符。您可以改为使用contains
运算符,但只能用于一个输入。
在开始本示例之前,请确保您具有 Data Service 的适当权限。如需了解详情,请查看“Data Service - 管理访问权限”页面。
就本示例而言,我们将使用名为“客户”的实体,其中包含以下字段:
- Address
- 地址 2
- 城市
- 电子邮件
- 名称
- 电话
- 计划
- 状态
- 邮政编码
Use the Function: Fetch function to retrieve multiple entity records. Additionally, use the Query builder to filter the retrieved records. In this example, we apply a filter to the Customer entity, so the search only returns customers from the state of Washington.
Refer to The Fetch function for more details.
If you want to retrieve a single record, use the FetchOne function instead.
- 打开现有应用程序,或创建一个新应用程序。
- 向应用程序添加“表格”控件:
- 选择“添加控件”。
- 选择“显示”。
- 将“表格”控件拖动到应用程序中的区域。
- 向您的应用程序添加实体:
- 选择“添加任何”
画布顶部的图标。
- 选择实体。
- 选择租户。
- 选择要添加到应用程序的实体,然后选择“添加”。
- 选择“添加任何”
- 将实体绑定到表格控件:
- 使用表达式编辑器在特定条件下应用筛选条件:
当您预览或运行应用程序时,系统将执行并检索筛选后的记录。
您可以使用“编辑网格”控件在应用程序中显示实体记录,并使用此控件对实体执行 CRUD 操作。
Refer to Using Fetch to retrieve entity records in Edit Grid controls and Using entities with Edit Grid controls for more details and practical examples related to the Edit Grid control.