我正在尝试运行具有多种功能的量角器(大约 30 个具有不同版本的浏览器)数据表是 xlsx 并且是一张,将被使用。每次运行后,xlsx 行将更新为“已使用”
我使用 exceljs 来写标志。但如果它已被另一个进程使用/打开,则会引发错误。我处理了异常,但我希望多进程等待并重试访问文件,而不是失败。
请建议如何由多个进程同时读取/写入一个 xlsx - 被处理的必须等待任何先前的进程完成其访问。
写函数:
updateRunnerXLS: function(fileName) {
var Excel = require('exceljs'); //Require the exceljs package
var workbook = new Excel.Workbook(); //create a workbook reader
workbook.xlsx.readFile(fileName)
.then(function(workbook) {
var rowValues = []; //initialize empty array
var worksheet = workbook.getWorksheet('sheet2');
var nameCol = worksheet.getColumn('M');
nameCol.eachCell(function(cell, rowNumber) { //Loop through the cells
if (cell.value == 'Y') { //get all rows with Y
rowValues.push(rowNumber); //Fill the array with row number
}
});
var row = worksheet.getRow(rowValues[0]); //Get the first row from the array
row.getCell('M').value = 'X'; //update the first row that has a Y to X
row.commit(); //Commit the row change
workbook.xlsx.writeFile(fileName).then(function() {
//done
}).catch(function (err) {
console.log('Handled the error - ' + err);
})
})
}
读取功能:(比使用exceljs读取更简单)
var Parser = require('parse-xlsx');
sheet = new Parser(testDataFolder + 'dataSheet.xlsx', 'sheet2');