哎呀!失去与http://198.x.x.x:hostnumber / websocket的连接

时间:2019-09-24 12:26:10

标签: websocket stomp sockjs

我正在使用SocksJs,每次都得到>!断开与Http的连接,或者如果我将链接更改为ws://198.x.x.x:hostnumber / websocket,那么我会得到

'SyntaxError:URL的方案必须为'http:'或'https:'。不允许使用“ ws:”。 语法错误:URL的方案必须为“ http:”或“ https:”。不允许使用“ ws:”。

另外,我正在共享我的代码

import * as Stomp from 'stompjs';
import * as SockJS from 'sockjs-client';
 connectNew() {
        const socket = new SockJS(this.serverUrl);
        this.stompClient = Stomp.over(socket);

        this.stompClient.connect('', '', () => {
                console.log('success');
        });
    }

如果有人知道我要在手机上运行此代码的答案,请提供帮助

0 个答案:

没有答案