NodeJS中的基本静态文件服务器

NodeJS中的基本静态文件服务器,第1张

NodeJS中的基本静态文件服务器
  • 基本服务器看起来不错,除了:

有一个

return
失踪的语句。

    res.write('404 Not Foundn');res.end();return; // <- Don't forget to return here !!

和:

res.writeHead(200, mimeType);

应该:

res.writeHead(200, {'Content-Type':mimeType});

  • 是的
    pipe()
    ,基本上是这样做的,它还会暂停/恢复源流(以防接收器变慢)。这是该
    pipe()
    函数的源代码:https : //github.com/joyent/node/blob/master/lib/stream.js


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5049362.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存