fix: Loop node response data (#4052)
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
shaohuzhang1 2025-09-17 18:33:46 +08:00 committed by GitHub
parent 4b52d5f232
commit b9ac3b941d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -248,12 +248,14 @@ class BaseLoopNode(ILoopNode):
'name': self.node.properties.get('stepName'),
"index": index,
"result": self.context.get('result'),
'array': self.node_params_serializer.data.get('array'),
'number': self.node_params_serializer.data.get('number'),
"params": self.context.get('params'),
'run_time': self.context.get('run_time'),
'type': self.node.type,
'current_index': self.context.get("index"),
"current_item": self.context.get("item"),
'loop_type': self.context.get("loop_type"),
'loop_type': self.node_params_serializer.data.get('loop_type'),
'status': self.status,
'loop_node_data': self.context.get("loop_node_data"),
'loop_answer_data': self.context.get("loop_answer_data"),