将x, y, z 列表变成 [x,y,z]格式

发布时间:2024年01月19日

如下图所示表格

方法:?

//处理数据 将x y z 合并成[x,y,z]
    let dealData = (xList, yList, zList) => {
        let result = []
        for(let i = 0; i < yList.length; i++){
            for(let j = 0; j < xList.length; j++){
                result.push([xList[j],yList[i], zList[i*yList.length + j]])
            }
        }
        return result
    }

文章来源:https://blog.csdn.net/m0_60648668/article/details/135689380
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。