本文整理汇总了TypeScript中phoenix.Socket.onError方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Socket.onError方法的具体用法?TypeScript Socket.onError怎么用?TypeScript Socket.onError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类phoenix.Socket
的用法示例。
在下文中一共展示了Socket.onError方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test_hooks
function test_hooks() {
const socket = new Socket("/ws", {params: {userToken: "123"}});
socket.connect();
socket.onError(() => console.log("there was an error with the connection!"));
socket.onClose(() => console.log("the connection dropped"));
const channel = socket.channel("room:123", {token: '123'});
channel.onError(() => console.log("there was an error!"));
channel.onClose(() => console.log("the channel has gone away gracefully"))
}
示例2: Socket
return Observable.create((observer: Observer<string>) => {
const options = { params: { token }};
this.socket = new Socket('/socket', options);
this.socket.onOpen(() => {
observer.next(null);
});
this.socket.onError((err: Error) => {
this.socket.disconnect();
return observer.error(err);
});
this.socket.connect();
})
示例3: test_hooks
function test_hooks() {
const socket = new Socket('/ws', {params: {userToken: '123'}});
socket.connect();
socket.onError(() => console.log('there was an error with the connection!'));
socket.onClose(() => console.log('the connection dropped'));
const channel = socket.channel('room:123', {token: '123'});
channel.onError(() => console.log('there was an error!'));
channel.onClose(() => console.log('the channel has gone away gracefully'));
}