我需要使用TypeScript将JSON数据转换为Excel工作表。
我想把下面的数据转换成.xlsx file
const JsonData = [
{
"email": "abc@gmail.com",
"industry":"IT",
"role": "Developer",
"firstName": "Shubham",
"lastName": "Verma",
"title": "Software Engineer",
"country": "India"
},
{
"email": "XYG@gmail.com",
"industry":"IT",
"role": "Developer",
"firstName": "Ankit",
"lastName": "Kumar",
"title": "Software Engineer",
"country": "India"
}
]
我探索了互联网和StackOverflow,但无法找到正确和准确的解决方案。这就是为什么问这里。有很多解决方案的Nodejs和javaScript,但没有TypeScript
1条答案
按热度按时间yzuktlbb1#
这就是我使用JSON数据创建example.xlsx文件的方法。
如何从不同文件调用函数: