是否可以为“每个”迭代器添加到逻辑应用程序内的项目?

问题描述

我认为只能根据上一步的结果集进行迭代;既然如此,我想没有办法在每个循环的添加到该结果集?

我正在为每个使用,因为我需要并发

有什么想法吗?

解决方法

据我所知,很难为每个循环添加到内部的集合/数组中。如果要将项目添加到数组中,只需使用 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>Document</title> <style> body{ width: 100%; margin: 0; } .conatiner{ display: flex; } .sidebar{ max-width: 30%; width: 100%; height: 100vh; background-color: blue; } .main{ max-width: 70%; width: 100%; background-color: black; } .wrapper{ display: flex; flex-direction: column; } .wrapper-1{ display: flex; } .item-1{ background-color: blanchedalmond; width: 70%; height: 200px; } .item-2{ background-color: chartreuse; width: 30%; height: 200px; } .item-3{ background-color: darkcyan; width: 100%; height: 300px; } </style> </head> <body> <div class="conatiner"> <div class="sidebar"> sidebar </div> <div class="main"> <div class="wrapper"> <div class="wrapper-1"> <div class="item-1"> 1 </div> <div class="item-2"> 2 </div> </div> <div class="item-3"> 3 </div> </div> </div> </div> </body> </html> 方法。例如,我有一个这样的数组:

enter image description here

我想将如下截图的项目添加到数组中。

enter image description here

现在我们只需要这样做:

enter image description here

表达式为:union()