为什么我写的websocket通信,没有调用onopen直接调用了onclose?
<scripttype="text/javascript">varws=null;functionstartServer(){url="ws://localhost:80...
<script type="text/javascript">
var ws = null;
function startServer() {
url = "ws://localhost:8080/websocket/echo.do";
if ('WebSocket' in window) {
alert(url);
ws = new WebSocket(url);
} else if ('MozWebSocket' in window) {
ws = new MozWebSocket(url);
} else {
alert('Unsupported.');
return;
}
ws.onopen = function() {
alert('Opened!');
};
ws.onmessage = function(event) {
alert('Receive message: ' + event.data);
};
ws.onclose = function() {
alert('Closed!');
};
} 展开
var ws = null;
function startServer() {
url = "ws://localhost:8080/websocket/echo.do";
if ('WebSocket' in window) {
alert(url);
ws = new WebSocket(url);
} else if ('MozWebSocket' in window) {
ws = new MozWebSocket(url);
} else {
alert('Unsupported.');
return;
}
ws.onopen = function() {
alert('Opened!');
};
ws.onmessage = function(event) {
alert('Receive message: ' + event.data);
};
ws.onclose = function() {
alert('Closed!');
};
} 展开
1个回答
展开全部
编写错误造成的,解决方法如下:
1、通过Intellij IDEA工具,创建一个SpringBoot工程,添加启动类WebsocketApplication,如下图所示。
2、在pom.xml文件引入依赖包,主要是包括netty-websocket-spring-boot-starter以及spring-boot-starter-web两个依赖包,如下图所示。
3、添加配置注入ServerEndpointExporter,如下图所示。
4、在WebSocketServer添加@ServerEndpoint注解,在该注解支持设置WebSocket的port、path等信息,如下图所示。
5、最后打开客户端webSocket.html,输入测试字符,websocket的服务端及客户端成功打印正确的信息。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询