【发布时间】:2014-04-12 06:19:45
【问题描述】:
我有以下代码。我在并行回调中将一些数据保存到缓存变量中,但在并行内部缓存对象始终为空。有什么想法吗?
Topics.getTopicsByTids = function(tids, uid, callback) {
var cache = {};
function loadTopicInfo(topicData, next) {
async.parallel({
privileges: function(next) {
console.log(cache); // always prints empty object
if (cache[topicData.cid]) {
console.log('CACHE');
return next(null, cache[topicData.cid])
}
categoryTools.privileges(topicData.cid, uid, next);
}
}, function(err, topicInfo) {
// save privs to cache, doesnt seem to modify
//the cache object in the outer scope
cache[topicData.cid] = topicInfo.privileges;
console.log(cache); // prints out the cached data
next(null, topicData);
});
}
Topics.getTopicsData(tids, function(err, topics) {
async.map(topics, loadTopicInfo, callback);
});
};
【问题讨论】:
标签: javascript node.js scope