我有一个字符串
var my_str = "Jenny [id:51], david, Pia [id:57], Aston [id:20], Raj, ";
我将此函数发送给函数convert_to_array(my_str),并希望得到这样的回报
[all: [51, 72, 57, 20, 73], new: [72, 73]]
这里,72& 73是新插入的文件到mongodb数据库。
这就是我在做的事情:
function convert_to_array(text) {
if(text && text !== '') {
var text_arr = text.split(', ');
text_arr.pop();
var arr = new Array();
var new_profiles = new Array();
var all_profiles = new Array();
for(var i = 0; i < text_arr.length; i++) {
var pair = text_arr[i].split('[id:');
// Its already existing, just add it to the array
if(pair[1]) {
all_profiles.push(pair[1].split(']')[0]);
// Else create a new profile and pass the _id
} else {
// Save to db first
var profileObj = new Profile({name: pair[0], automated: true});
profileObj.save(function(err, data) {
if(err) throw err;
all_profiles.push(String(data._id));
new_profiles.push(String(data._id));
});
}
}
arr = {all: all_profiles, new: new_profiles};
return arr;
}
}
使用此代码,我只得到这个(或类似的东西,我无法记住确切的输出)
[all: [51, 57, 20], new: []]
该项目保存在数据库中,我可以看到。但由于节点本质上是非阻塞的,因此for循环在数据保存到数据库之前完成并返回。并将id推送到aray。我试过异步,但仍然无法弄清楚如何解决这个问题。
我添加了几个console.log来查看它是如何执行的,这里是:
yes existing: 51
oh! doesnt exist. creating: david
yes existing: 57
yes existing: 20
oh! doesnt exist. creating: Raj
GET /page/delete_later 200 4ms
Ok created now: 72
Ok created now: 73
我对如何编码节点友好感到困惑!
答案 0 :(得分:1)
您需要更改convert_to_array
函数,以便在结果完成时调用回调,而不是返回结果返回值。
function convert_to_array(text, callback) {
// do some stuff, call this when done:
// callback(null, arr);
// or this on error:
// callback(err);
}
现在你的结果准备好了吗?当所有text_arr
项都被处理时(即所有对profileObj.save
的调用都已完成)。在代码中表达这一点的最简单方法可能是使用异步模块(npm install async
):
var async = require('async');
// ...
function convert_to_array(text, callback) {
if(text && text !== '') {
var text_arr = text.split(', ');
text_arr.pop();
var arr = new Array();
var new_profiles = new Array();
var all_profiles = new Array();
async.eachSeries(text_arr, function(it, done) {
var pair = text_arr[i].split('[id:');
// Its already existing, just add it to the array
if(pair[1]) {
all_profiles.push(pair[1].split(']')[0]);
next(); // !important! tell async we are done
// Else create a new profile and pass the _id
} else {
// Save to db first
var profileObj = new Profile({name: pair[0], automated: true});
profileObj.save(function(err, data) {
if(err) {
// throw err; // use callback instead of throw for error handling
next(err);
return;
}
all_profiles.push(String(data._id));
new_profiles.push(String(data._id));
next(); // !important! tell async we are done
});
}, function(err) {
arr = {all: all_profiles, new: new_profiles};
callback(err, arr);
}
} else {
callback(null, undefined); // alter depending on your requirements
}
}