我需要将一个很大的csv文件批量导入到mongoose db中,但是我对此并不陌生。 this question中的代码对我有很大帮助,但仍然无法使其正常工作。
读取一行并由定界符分割后,我不知道如何映射必须插入对象obj中的内容:
stream.on("line",function(line) {
var row = line.split(","); // split the lines on delimiter
var obj = {};
// other manipulation
bulk.insert(obj); //error: obj is undefined
...