私はテーブルを構築しました:
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) に精通していますか?