我有下面的节点脚本基本上复制一些文件的内容并将它们插入到mongo中。
脚本似乎永远不会结束,即使所有数据都成功插入,我也总是要按Ctrl + C来杀死它。
我是否应该在node.js中使用某些内容来结束脚本?
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/testdb');
var dir = './seeds';
var db = mongoose.connection;
// Show connection error if there is one
db.on('error', console.error.bind(console, 'Database Connection Error:'));
// If we successfully connected to mongo
db.once('open', function callback() {
var fs = require('fs'); // Used to get all the files in a directory
// Read all the files in the folder
fs.readdir(dir, function(err, list) {
// Log the error if something went wrong
if(err) {
console.log('Error: '+err);
}
// For every file in the list
list.forEach(function(file) {
// Set the filename without the extension to the variable collection_name
var collection_name = file.split(".")[0];
var parsedJSON = require(dir + '/' + file);
for(var i = 0; i < parsedJSON.length; i++) {
// Counts the number of records in the collection
db.collection('cohort').count(function(err, count) {
if(err) {
console.log(err);
}
});
db.collection(collection_name).insert(parsedJSON[i], function(err, records) {
if(err) {
console.log(err);
}
console.log(records[0]);
console.log("Record added as "+records[0]);
});
}
});
});
});
答案 0 :(得分:9)
完成所有操作后,请致电mongoose.disconnect()
。正如@AaronDufour正确指出的那样,在注册事件处理程序回调时节点不会退出,因为它不知道不再需要更多事件,例如发出“关闭”事件的连接。或者&#39;错误&#39;例如,事件。
答案 1 :(得分:5)
您可以致电process.exit();
退出