Express 框架或 Node.js 如何自动提供 JavaScript 文件?
我将这一行添加到我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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)