We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nano.request("Manager.AuthLogin", authLoginReq, function(data){ console.log(data); }); nano.request("gate.Handler.Signup", {"name":"Signup chrislonng", "age":10000}, function(data){ console.log(data);});
nano.request("Manager.AuthLogin", authLoginReq, function(data){ console.log(data); });
nano.request("gate.Handler.Signup", {"name":"Signup chrislonng", "age":10000}, function(data){ console.log(data);});
在这个调用中,路由Manager.AuthLogin(s *session.Session, jsonData []byte)同时收到了authLoginReq和下面测试用的gate.Handler.Signup(也就是jsonData中同时拥有两个request的数据),使用websocket却又粘包,非常奇怪
The text was updated successfully, but these errors were encountered:
No branches or pull requests
nano.request("Manager.AuthLogin", authLoginReq, function(data){ console.log(data); });
nano.request("gate.Handler.Signup", {"name":"Signup chrislonng", "age":10000}, function(data){ console.log(data);});
在这个调用中,路由Manager.AuthLogin(s *session.Session, jsonData []byte)同时收到了authLoginReq和下面测试用的gate.Handler.Signup(也就是jsonData中同时拥有两个request的数据),使用websocket却又粘包,非常奇怪
The text was updated successfully, but these errors were encountered: