gpt4 book ai didi

用户添加的 JavaScript 保存表行

转载 作者:太空宇宙 更新时间:2023-11-04 07:57:26 25 4
gpt4 key购买 nike

我正在制作一个包含表格的 Electron 应用程序,用户可以添加表格并更改字段的内容,但我希望保存输入,并且仅当用户在其中输入任何内容时。

我该怎么做?我需要数据库吗?可以用cookie来完成吗?我尝试学习如何使用 cookie,但没有找到如何保存添加的元素及其内容。

function appendRow(id) {
var table = document.getElementById(id); // table reference
length = table.length,
row = table.insertRow(table.rows.length); // append table row
var i;
// insert table cells to the new row
for (i = 0; i < table.rows[0].cells.length; i++) {
createCell(row.insertCell(i), i, 'row');
}
}

function createCell(cell, text, style) {
var div = document.createElement('div'), // create DIV element
txt = document.createTextNode('_'); // create text node
div.appendChild(txt); // append text node to the DIV
div.setAttribute('id', style); // set DIV class attribute
div.setAttribute('idName', style); // set DIV class attribute for IE (?!)
cell.appendChild(div); // append DIV to the table cell
}
table {
text-align: center;
width: 400px;
}
tr:nth-child(even) {
background-color: #ccc;
}
<!DOCTYPE html>
<html>

<head>
<title>Test</title>
<link rel="stylesheet" href="test.css">
</head>

<body>
<button id="addCust" class="addSort" onclick="appendRow('custList')">add customer</button>
<table id="custListTop" contenteditable="false" style="background-color: #ccc;">
<tr>
<td style="border-top-left-radius: 5px;">Customers</td>
<td style="border-top-right-radius: 5px;">Main Location</td>
</tr>
</table>
<table id="custList" contenteditable="true">
<tr>
<td>Someone</td>
<td>something</td>
</tr>
</table>
<script src="test.js"></script>

</body>

</html>

最佳答案

如何保存它取决于你想做什么。如果您希望它在您的程序退出后仍然存在,您将需要以某种方式将它保存在磁盘或服务器上。不过,您可能只想将其保存到文件中。 (JSON 是最明显的选择)。否则,只需将其保存到 js 变量中即可。

要获取数据,我要么使用读取单元格文本的保存按钮,要么使用数据绑定(bind)。 Later 对于 Electron 应用程序非常有用。您可以使用框架(如 vue.jsreact.js 或更多)或 DIY .

前者可能更容易,无论如何您都需要一个按钮将其保存到磁盘。单击按钮,您可以浏览所有 <tr> -元素并获取它们的值并保存它们。

function save(id) {
var table = document.getElementById(id);
var trs = table.getElementsByTagName('tr'); // list of all rows

var values = []; // will be a (potentially jagged) 2D array of all values
for (var i = 0; i < trs.length; i++) {
// loop through all rows, each will be one entrie in values
var trValues = [];
var tds = trs[i].getElementsByTagName('td'); // list of all cells in this row

for (var j = 0; j < tds.length; j++) {
trValues[j] = tds[j].innerText;
// get the value of the cell (preserve newlines, if you don't want that use .textContent)
}

values[i] = trValues;
}
// save values
console.log(values);
}

function appendRow(id) {
var table = document.getElementById(id); // table reference
length = table.length,
row = table.insertRow(table.rows.length); // append table row
var i;
// insert table cells to the new row
for (i = 0; i < table.rows[0].cells.length; i++) {
createCell(row.insertCell(i), i, 'row');
}
}

function createCell(cell, text, style) {
var div = document.createElement('div'), // create DIV element
txt = document.createTextNode('_'); // create text node
div.appendChild(txt); // append text node to the DIV
div.setAttribute('id', style); // set DIV class attribute
div.setAttribute('idName', style); // set DIV class attribute for IE (?!)
cell.appendChild(div); // append DIV to the table cell
}
table {
text-align: center;
width: 400px;
}
tr:nth-child(even) {
background-color: #ccc;
}
<!DOCTYPE html>
<html>

<head>
<title>Test</title>
<link rel="stylesheet" href="test.css">
</head>

<body>
<button id="addCust" class="addSort" onclick="appendRow('custList')">add customer</button>
<button id="save" class="save" onclick="save('custList')">save</button>
<table id="custListTop" contenteditable="false" style="background-color: #ccc;">
<tr>
<td style="border-top-left-radius: 5px;">Customers</td>
<td style="border-top-right-radius: 5px;">Main Location</td>
</tr>
</table>
<table id="custList" contenteditable="true">
<tr>
<td>Someone</td>
<td>something</td>
</tr>
</table>
<script src="test.js"></script>

</body>

</html>

关于用户添加的 JavaScript 保存表行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47232109/

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