gpt4 book ai didi

javascript - res.sendFile 不是函数 Node.js

转载 作者:数据小太阳 更新时间:2023-10-29 04:53:21 39 4
gpt4 key购买 nike

我无法使用 node.js 发送 HTML 文件

所以首先这是我得到的错误

Application has thrown an uncaught exception and is terminated:
TypeError: res.sendFile is not a function
at Server.<anonymous> (C:\Program Files\iisnode\www\test\app.js:4:6)
at emitTwo (events.js:88:13)
at Server.emit (events.js:173:7)
at HTTPParser.parserOnIncoming [as onIncoming] (_http_server.js:529:12)
at HTTPParser.parserOnHeadersComplete (_http_common.js:89:23)

我的 app.js 代码是

var http = require('http');

http.createServer(function (req, res) {
res.sendFile('test.html', { root: __dirname });
}).listen(process.env.PORT);

如果我遗漏了一些简单的东西,我很抱歉,因为这是我制作的第一个 node.js 程序

最佳答案

这个具体问题已经得到解答,但值得一提的是,如果您使用的是“快速”版本 3.x,修复可能就像切换 res.sendFile('path-to-file ');res.sendfile('path-to-file');

这是我遇到的问题。因此,您可以升级快速版本(或)将方法名称更改为小写来解决此问题。

关于javascript - res.sendFile 不是函数 Node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34194245/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com