- 简介
- 入门指南
- 流程建模
- 流程实施
- 流程运营
- 流程监控
- 流程优化
- 参考信息
Maestro 用户指南
使用“属性”面板输入字段旁边的调整选取器,在文本、变量和表达式之间切换。
| Mode | 用于以下情况 |
|---|---|
| 变量 | 您想引用现有变量或元素输出值 |
| Expression editor | 您需要编写复杂逻辑 (JavaScript) |
| JSON 编辑器 | 您的输入或输出是结构化 JSON 负载 |
| 日期和时间选取器 | 您需要定义特定日期或时间值 |
| Data Fabric | 您想从 Data Fabric 实体中引用属性 |
使用“文本构建器 (Text builder)”提供自由格式的文本条目。
变量
使用变量配置元素属性,并在元素、自动化、智能体、应用任务和连接之间传递值。元素输出可以自动在整个流程中作为变量使用。
Open the Variable selection panel to select a variable, argument, or property. Provide and test values by using the Test button on the top-right of the Validate expression panel.
Test input values verify expression accuracy and ensure it produces the anticipated output based on the provided inputs.
变量选取器包含折叠子流程中任务的输出。
无论子流程是以折叠视图还是展开视图显示,您都可以直接引用子流程变量,从而更轻松地使用模块化流程设计。
对变量进行重命名时,其底层 ID 会更新,以匹配新名称。引用旧 ID 的表达式将在重命名后失效。
使用“修复变量”对话框,在整个流程中识别和更新损坏的引用。
Expression editor
Use the Expression editor to write more complex expressions to configure element properties. It features intelligent code completion for variables, arguments, methods, properties, objects, or keywords.
Use Ctrl + Space to see the list of available options while writing expressions.
使用表达式编辑器底部的文本栏描述表达式,并从 Autopilot 获取即时帮助。
Maestro 对表达式进行验证,并在保存表达式和执行期间显示无效语法或未定义变量引用警告。如果出现警告,请打开表达式编辑器,并更正语法或更新变量引用。
JSON 编辑器
Start by adding a raw JSON object in the Variables view to define your input payload. Once added, switch to the JSON editor to explore and interact with the data in a structured format.
This view automatically organizes nested objects and arrays, allowing you to inspect, expand, and reference values easily. Use it to validate data shape, map fields to expressions, or supply inputs to downstream components with clarity and precision.
日期和时间选取器
Use the Date and Time picker to capture specific scheduling details within your automation flow. This component lets you define date and time values in a standardized format.
Use it for timestamping submissions, setting deadlines, or scheduling downstream activities. Manually enter values or use the calendar and clock controls for quick selection, ensuring consistency and reducing formatting errors.
数据结构编辑器
要配置数据集成,请打开 Data Fabric 编辑器,选择“实体”,使用唯一标识符指定记录匹配,然后选择要检索或更新的字段。这些输入决定了流程中数据交互的范围。
按字段值查询 Data Fabric 实体
使用 qes: 前缀语法,按字段值(而非内部记录 ID)查找 Data Fabric 实体:
datafabric.EntityName["qes:FieldName=Value"].FieldToRead
datafabric.EntityName["qes:FieldName=Value"].FieldToRead
例如:datafabric.LoanApplicationCase["qes:CaseId=HL-999"].LoanAmount
当您知道对业务有意义的字段值,但没有内部记录 ID 时,请使用此语法。qes: 语法仅支持相等运算符。
将活动输出写回 Data Fabric
活动输出可以使用 target 属性语法,直接以 DataFabric 实体为目标:
target="=datafabric.EntityName[...]"
target="=datafabric.EntityName[...]"
活动完成时,Maestro 会自动将输出值写回实体,无需任何额外的配置步骤。