gpt4 book ai didi

node.js - 在某种轮询中获取 404 - 使用express-generator的新nodejs项目

转载 作者:太空宇宙 更新时间:2023-11-04 02:23:05 25 4
gpt4 key购买 nike

我使用 express-generator Nodejs 模块 ( http://expressjs.com/starter/generator.html ) 中的 express 命令创建了一个简单的项目结构。

当我启动应用程序时,一切正常,除了一个奇怪的轮询调用,每个请求都会收到 404:

Listening on port 3000
GET / 200 533.444 ms - 170
GET /stylesheets/style.css 200 4.643 ms - 111
GET /socket.io/?EIO=3&transport=polling&t=1439686799050-244 404 40.935 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686802114-245 404 27.494 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686806157-246 404 16.291 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686811211-247 404 12.629 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686816239-248 404 20.037 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686821276-249 404 13.513 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686826320-250 404 16.412 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686831383-251 404 10.820 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686836420-252 404 11.827 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686841478-253 404 15.267 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686846669-254 404 12.168 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686851754-255 404 11.569 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686856976-256 404 8.629 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686862211-257 404 6.490 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686867255-258 404 8.431 ms - 1235
GET /socket.io/?EIO=3&transport=polling&t=1439686872285-259 404 14.600 ms - 1235

有关如何解决 404 错误的任何帮助吗?提前致谢。

最佳答案

Express-generator 不了解套接字。您没有安装模块“socket.io”,并且您的服务器没有监听套接字。

解决方案:http://socket.io/docs/ (官方文档)

套接字可以通过多种传输方式工作:WebSockets、XHR、HTTP 等。客户端尝试通过所有可用的传输方式进行连接,并通过 HTTP 接收响应。但响应是“404”,因为请求是由Express的路由器处理的,而不是socket.io,并且路由器没有合适的路由。

关于node.js - 在某种轮询中获取 404 - 使用express-generator的新nodejs项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32031070/

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