在第一步,我想将文件加载到名为'file'的变量中,然后在第二步,
做response.write(file)
要实现这一点,我使用async.series,但我的代码有问题。
这是我用来启动服务器的代码:
var http = require("http"),
fs = require('fs'),
async = require('./js/async.js');
var onRequest = function(request,response) {
response.writeHead(200,{ "Content-Type": "text/html; charset=utf-8" });
var file; // 'file' declared
var main = function(callback) {
fs.readFile('.\\html\\admin.html','utf-8',function(err,data) {
file = data; // 'file' is given content of admin.html
console.log('2 >> ' + typeof file);
});
callback(null);
}
console.log('1 >> ' + typeof file);
async.series([
main
], function() { // At this point 'file' is still undefined, that's odd
response.end(); // 'cause it's a callback and should be fired after 'main'
console.log('3 >> ' + typeof file);
});
}
http.createServer(onRequest).listen(80);
麻烦在于主题 - async.series不起作用,因为我希望它能工作:'main'函数中的fs.readFile在触发async.series的回调后返回数据。
我得到了这个输出:
1 >> undefined
3 >> undefined
2 >> string
虽然我期待:
1 >> undefined
2 >> string
3 >> string
有什么问题?
答案 0 :(得分:4)
尝试将回调添加到readFile
var main = function(callback) {
fs.readFile('.\\html\\admin.html','utf-8',function(err,data) {
file = data; // 'file' is given content of admin.html
console.log('2 >> ' + typeof file);
callback(null);
});
}
也许在我们的情况下更好地使用瀑布?,像这样
async.waterfall([
function (callback) {
fs.readFile('.\\html\\admin.html','utf-8', function (err, data) {
callback(err, data);
});
}
], function (err, file) {
response.end();
})