apps
latest
false
重要 :
有关 Studio Web 中的应用程序项目文档,请参阅 Studio Web 文档中的“应用程序项目”一章:https://docs.uipath.com/zh-CN/studio-web/automation-cloud/latest/user-guide/apps-in-studio-web。
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Apps 用户指南
上次更新日期 2026年3月20日
在应用程序中引用队列
为了创建更好、更复杂的应用程序,UiPath Apps 可以连接 UiPath Orchestrator。
从 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 添加的队列具有适当的权限。
更新引用的队列
要更新架构已更改的引用队列,请执行以下步骤:
-
从树视图的“队列”部分中,选择要更新的队列。
-
单击刷新图标。
