我有一个 excel 文件.xlsx
(参考图 1)并参考图 2以获取我在 reactjs/typescript/electron js 中的源代码。它输出错误的结果(参见图 3)。
有人知道出了什么问题吗?提前致谢
图 1
图 2
const dfd = require("danfojs-node")
dfd.read_excel(inputfile)
.then((df) => {
//prints the first five columns
df.head().print()
console.log('df', df)
}).catch(err => {
console.log('err', err);
})
图 3