不工作我想轉換.xls
文件JSON格式的我用xls-to-json
模塊相同。XLS到JSON在Node.js的
,當我用xlsx-to-json
模塊是工作的罰款。但我不想讀.xlsx file
。它給我的錯誤有:
TypeError: Cannot set property length of [object Object] which has only a getter.
我無法找到一個錯誤。有沒有其他模塊可以用JSON轉換.xls文件。
here is my code :
var node_xj = require("xls-to-json");
app.get('/file',function(req,res){
node_xj({
input: 'file.xls', // input xls
output: "output.json", // output json
sheet: "sheetname", // specific sheetname
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
});
});
你想只讀'xls'文件嗎?並且該文件將動態地發佈? – abdulbarik
是的。我想只讀取xls文件,它會動態地 – sharvari