我在 Node.js 中遇到此错误“INVALID_HTTP_TOKEN”如何修复它?

发布于 2025-01-10 02:29:35 字数 253 浏览 0 评论 0原文

我正在学习在 Node.js 中制作一个基本服务器,但每次尝试运行我的服务器时都会遇到此错误 我提供了我的代码的图像和错误的图像,如果您可以

代码, 请提供帮助 这是代码图像

错误 这是错误图像

I was learning to make a basic server in Node.js but I face this error every time I try to run my server
I have provided an image of my code and an image of the error as well please help if you can

Code
This is code image

Error
This is error image

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏月而来 2025-01-17 02:29:35

正确的代码行应该是:

res.writeHead(200, { "Content-type": "text/html" });

根据显示的错误,看起来您只是
写了

“内容类型”

而不是

“内容类型”

The proper line of code should be:

res.writeHead(200, { "Content-type": "text/html" });

According to the error shown, it looks like you just
wrote

"content type"

instead of

"Content-type"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文