Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

javascript - How to properly change namespaces and open a new connection with socket io?

I have an application that requires a user to be able to switch between namespaces, and in doing so need to establish a new connection to a namespace socket. Unfortunately, a user can only use the first namespace they created and cannot swap between others. Here is my code for connecting the client:

  const socket = io(`${url}/${storeState.userNamespace}`, {
      forceNew: true,
      auth,
});

The socket object is returned when connecting, but it does not have an ID property, a path property, and is disconnected. I have confirmed that the userNamespace is present at the time of calling io(). How is one supposed to easily switch between namespaces and open new connections? forceNew seems to not be doing the trick.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...