("<node-name>").all(branchIndex?: number, runIndex?: number)#
这可以访问当前节点或父节点的所有项目。如果不提供任何参数,它将返回当前节点的所有项目。
🌐 This gives access to all the items of the current or parent nodes. If you don't supply any parameters, it returns all the items of the current node.
获取项目(Getting items)#
=== “JavaScript”
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
1 2 3 4 5 6 7 8 9 10 11 | |
访问项目数据(Accessing item data)#
获取前一个节点输出的所有项目,并记录它们包含的数据:
🌐 Get all items output by a previous node, and log out the data they contain:
=== “JavaScript”
1 2 3 4 5 6 | |
1 2 3 4 5 6 | |