WebSocket-соединение с 'ws://http//127.0.0.1:8000/trainer_notifs/ws/notifications/' не удалось: (аноним) @ trainer_notifs:124

const webSocket = new WebSocket( 'ws://' + window.location.host + '/ws/notifications/' );

webSocket.onopen=function(event){
    webSocket.send(JSON.stringify({
        'message': 'From Client'
    }));
}
Вернуться на верх