apps
2023.10
true
- 入门指南
- 在开始之前
- 如何
- 通知
- 使用 VB 表达式
- 设计应用程序
- 事件和规则
- 在应用程序中利用 RPA
- 在应用程序中利用实体
- 在应用程序中利用队列
- 在应用程序中引用队列
- 替换队列
- 应用程序生命周期管理 (ALM)
- 基本故障排除指南
在应用程序中引用队列
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
Apps 用户指南
Last updated 2024年4月19日
在应用程序中引用队列
为了创建更优秀、功能更繁多的应用程序,UiPathTM Apps 可以连接 UiPathTM Orchestrator 中的队列并与之交互。
在 Orchestrator 中发布流程后,您可以从应用程序引用该流程。
备注:
Apps 只能引用使用特定数据 JSON 架构文件创建的队列。
架构定义示例:
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "object",
"title": "The Root Schema",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"isPermanent": {
"type": "boolean"
},
"age": {
"type": "number"
},
"department": {
"type": "string",
"enum": ["Sales", "Marketing", "HR"]
}
}
}
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "object",
"title": "The Root Schema",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"isPermanent": {
"type": "boolean"
},
"age": {
"type": "number"
},
"department": {
"type": "string",
"enum": ["Sales", "Marketing", "HR"]
}
}
}
以下示例显示了如何将现有队列添加到应用程序:
- 在 App Studio 中的现有应用程序中,展开“添加控件”按钮右侧的下拉菜单。
-
选择队列。
-
系统将显示当前帐户的租户列表。选择托管您需要导入的实体的租户,然后单击“下一步”。
- 系统会打开“添加队列”向导,显示所选租户中的队列列表。高亮显示队列将显示其内容。
-
选择一个或多个队列。右侧面板显示高亮队列的属性列表。
-
选中要在应用程序中使用的队列旁边的复选框,然后单击“添加”。
注意:队列权限在 Orchestrator 中进行管理。确保您对要从 Orchestrator 添加的队列具有适当的权限。