我正在处理 node.js 并发现了两种读取文件并将其发送到线路的方法,一旦我确定它存在并使用 writeHead 发送了正确的 MIME 类型:
// read the entire file into memory and then spit it out
fs.readFile(filename, function(err, data){
if (err) throw err;
response.write(data, 'utf8');
response.end();
});
// read and pass the file as a stream of chunks
fs.createReadStream(filename, {
'flags': 'r',
'encoding': 'binary',
'mode': 0666,
'bufferSize': 4 * 1024
}).addListener( "data", function(chunk) {
response.write(chunk, 'binary');
}).addListener( "close",function() {
response.end();
});
如果有问题的文件很大,比如视频,我假设 fs.createReadStream 可能会提供更好的用户体验是否正确?感觉它可能不那么块状;这是真的?我还需要知道其他优点、缺点、注意事项或陷阱吗?