webstock推送消息报错
来源:12-10 webSocket消息推送
菜鸟自学之旅
2019-01-28
这段代码是模仿老师的写法:
<script>
var websocket = null;
if('WebSocket' in window) {
websocket = new WebSocket('ws://study.nat300.top/sell/webSocket');
}else {
alert('该浏览器不支持websocket!');
}
websocket.onopen = function (event) {
console.log('建立连接');
}
websocket.onclose = function (event) {
console.log('连接关闭');
}
websocket.onmessage = function (event) {
console.log('收到消息:' + event.data)
//弹窗提醒, 播放音乐
$('#myModal').modal('show');
document.getElementById('notice').play();
}
websocket.onerror = function () {
alert('websocket通信发生错误!');
}
window.onbeforeunload = function () {
websocket.close();
}
</script>
写回答
3回答
-
启动项目后,每次刷新都有这个错误?运行我的源码试试。
032019-01-30 -
一码丶平川
2019-03-25
同学 你配置类配了吗???spring容器中有“ServerEndpointExporter"这个类吗??
00 -
lijunkui126
2019-01-29
ws :// study .nat300. top / / 这个改成自己内网IP 例如 localhost:8080/项目名
012019-01-29
相似问题