Express 框架或 Node.js 如何自动提供 JavaScript 文件?

发布于 2024-11-17 13:21:45 字数 151 浏览 0 评论 0原文

我将这一行添加到我的 index.jade 文件中:

script(src="/socket.io/socket.io.js")

不知何故,它自动知道如何将该 Javascript 文件提供给我的客户端。这是如何运作的?

I added this line to my index.jade file:

script(src="/socket.io/socket.io.js")

And somehow it automagically knew how to serve that Javascript file to my client. How does that work?

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

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

发布评论

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

评论(1

柒七 2024-11-24 13:21:45

Socket.io 向服务器添加一个请求处理程序。请参阅:

https://github.com/learnboost/socket .io/blob/master/lib/manager.js#L90

处理程序处理以 /socket.io 开头的任何请求并处理它们(例如,从任何位置提供 socket.io.js 文件)模块已安装)

Socket.io adds a request handler to the server. See:

https://github.com/learnboost/socket.io/blob/master/lib/manager.js#L90

The handler deals with any requests that begin with /socket.io and handles them (e.g. serving up the socket.io.js file from wherever the module is installed)

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