apps
2023.4
false
- 入门指南
 - 在开始之前
 - 如何
 - 通知
 - 设计应用程序
 - 事件和规则
 - 在应用程序中利用 RPA
 - 在应用程序中利用实体
 - 在应用程序中利用队列
- 在应用程序中引用队列
 - 替换队列
 - 将 Apps 与队列一起使用
 
 - 应用程序生命周期管理 (ALM)
 - 基本故障排除指南
 
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Apps 用户指南
上次更新日期 2025年4月15日
为了创建更好、更复杂的应用程序,UiPath Apps 可以连接 UiPath Orchestrator 中的队列并与之交互。
在 Orchestrator 中发布流程后,您可以从应用程序引用该流程。
有关队列的更多信息,请查看 Orchestrator 指南中的队列部分。
注意:Apps 仅支持 Orchestrator 中包含特定数据 JSON 架构文件的队列。为了更好地理解特定数据 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"]
        }
        }
    }特定数据 JSON 架构文件示例
               
               在下面的示例中,我们将演示如何将现有流程导入到应用程序中。
- 在 App Studio 中的现有应用程序中,单击画布顶部的“添加任何”
 图标。 
                   - 
                     
单击“队列”以打开队列引用对话框。
 - 
                     
选择您帐户中有权访问的 Orchestrator 租户。选择托管所需流程的实例,然后单击“下一步”。您还可以连接到独立的内部部署租户,选择“使用其他 Orchestrator 租户”。选择租户后,单击“下一步”。
 - 系统将为当前选定的租户显示一个按文件夹组织的流程列表。高亮显示队列将显示其内容。
 - 
                     
选中要在应用程序中使用的队列旁边的复选框,然后单击“添加”。
 
注意:Apps 仅支持 Orchestrator 中包含特定数据 JSON 架构文件的队列。
               
               
               该流程现已添加到应用程序中。
注意:队列权限在 Orchestrator 中进行管理。确保您对要从 Orchestrator 引用的队列具有适当的权限。