0
我試圖用xls-to-json
節點模塊 讀取XLS文件,以JSON格式的字符串,而發送的文件路徑它表明類似路徑的錯誤必須是一個字符串帆:類型錯誤:路徑必須是
我中號使用下面的代碼片段
var fs = uploadedFiles[0].fd;
//fs is a file path
node_xj = require("xls-to-json");
node_xj({
input:fs,
}, function(err, result)
{
if(err)
{
console.error(err);
}
else
{
console.log(result);
}
});
錯誤
fs.js:430
binding.open(pathModule._makeLong(path),
^
TypeError: path must be a string
請幫助解決這個問題。
這是什麼'的typeof UPLOADEDFILES [0] .fd'返回? –
它返回字符串。 – Martin