Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...