Splitter
Overview
The Splitter component splits the system data body transferred to this component based on the specified expression and transfers the splitting result to subsequent steps through the system data body. Generally, the Splitter component will be connected to the Filter component.
Configuration
|
Parameter |
Description |
|---|---|
|
Expression Type |
The value can be JSONPath or XPath. Select an expression type based on the data structure. For details about expression types, see Data Reference. |
|
Expression |
Specify the expression for splitting data. For example, if the system data transferred to the Splitter node is as follows, you can use $.users of the JSONPath expression type to split the transferred array object. {
"users": [
{
"id": 1,
"name": "user_01"
},
{
"id": 2,
"name": "user_02"
}
]
} |
Splitter is an asynchronous processing component. If a task contains a Splitter node, the open API will return the data transferred to the Splitter node.
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.