我正在使用此npm google-spreadsheet来操作google电子表格,但是我找不到像Google表格Api已经提供的那样一次添加多行的任何方法。
我已经使用过.addRow()方法,但是要添加多行,我需要运行效率低下的循环。这里有谁遇到过类似的问题,仅使用此npm即可解决。
最佳答案
仅获取行并对其进行编辑并进行批量保存怎么样。
function workingWithCells(step) {
sheet.getCells({
'min-row': 1,
'max-row': 5,
'return-empty': true
}, function(err, cells) {
var cell = cells[0];
console.log('Cell R'+cell.row+'C'+cell.col+' = '+cell.value);
// cells have a value, numericValue, and formula
cell.value == '1'
cell.numericValue == 1;
cell.formula == '=ROW()';
// updating `value` is "smart" and generally handles things for you
cell.value = 123;
cell.value = '=A1+B2'
cell.save(); //async
// bulk updates make it easy to update many cells at once
cells[0].value = 1;
cells[1].value = 2;
cells[2].formula = '=A1+B1';
sheet.bulkUpdateCells(cells); //async
step();
});
},
https://www.npmjs.com/package/google-spreadsheet
这对您有用吗?
关于javascript - 添加多行Google Spreadsheet NPM,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57786039/