标签: node.js socket.io
如果我在前端连接服务器时如何设置服务器IP地址?
var socket = io.connect('http://localhost:3000/panel');
因此localhost会为生产环境提供相应的服务器IP地址。
感谢。
答案 0 :(得分:1)
由于此Javascript正在客户端中执行,您只需执行以下操作:
document.location.hostname包含主机名,document.location.port包含端口。它很简单。
document.location.hostname
document.location.port