gpt4 book ai didi

javascript - 将 javascript 表导出到 Excel 或控制台表

转载 作者:行者123 更新时间:2023-11-28 08:52:48 25 4
gpt4 key购买 nike

我已经建立了一个表:

function insertTable(elementName, text, textColor, backgroundColor, relativeOffsetArea, fatherBC, scrollArea, offsetArea, clientArea) {
this.elementName = elementName;
this.text = text;
this.textColor = textColor;
this.backgroundColor = backgroundColor;
this.relativeOffsetArea = relativeOffsetArea;
this.fatherBC = fatherBC;
this.scrollArea = scrollArea;
this.offsetArea = offsetArea;
this.clientArea = clientArea;
}

我在运行过程中向该表添加数据..

但是当我使用以下代码查看控制台日志中填充的表格时:

  console.table(consoleResult,["elementName", "text", "textColor", "backgroundColor", "relativeOffsetArea", "fatherBC", "scrollArea",
"offsetArea", "clientArea"]);

最大行数为 1000。控制台表的长度是否限制为 1000 ?您熟悉导出此表的另一种方法(也许是 Excel)吗?

最佳答案

console.table 仅适用于某些浏览器版本。如果您想要 Excel 中的此数据,只需将其循环到服务器脚本并将其下载为 xls,其中包含 html 表格。 (这有点 hacky,但 excel 会很乐意打开保存为 xls 文件的 html 表格)

在 php 中这是一个例子: HTML table to excel - PHP

关于javascript - 将 javascript 表导出到 Excel 或控制台表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18930611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com