粘贴对象数组,识别顶层与嵌套数组,用 filter/map 等链式回调处理,返回完整结果
[ { id: 1, name: 'Alice', active: true, tags: ['frontend', 'react'], scores: [90, 80, 95], }, { id: 2, name: 'Bob', active: false, tags: ['backend'], scores: [70, 85], }, { id: 3, name: 'Carol', active: true, tags: ['frontend', 'design'], scores: [88, 92, 76], }, ]
支持 JSON 或 JS 对象/数组字面量(单引号、尾逗号均可)
运行流水线后,完整结果会显示在这里…
即使只改了嵌套字段,输出也是更新后的整份数据