我正在尝试将数据数组导出到Nodejs中的CSV文件。我正在使用NodeCSV模块,但每次尝试按照示例和文档时我都会遇到错误。它打印了一堆代码,并说当我尝试使用字符串时,stringifier没有方法'indexOf',当我尝试
时它说'对象不是函数'csv().from.array(results).to('/temp/users.csv')
如果我把()关闭csv也不行。有谁知道怎么做或者能指出一些好的文件?
答案 0 :(得分:-2)
希望它能为您提供更多帮助:
http.createServer(function(request, response) {
response.setHeader('Content-disposition', 'attachment; filename=testing.csv');
response.writeHead(200, {
'Content-Type': 'text/csv'
});
csv().from(data).to(response)
}) 。听(3000);