要获取Angular 9 WebSocket的连接状态,您可以使用WebSocket对象的readyState属性。该属性返回WebSocket的当前状态,其值可以是以下之一:
0:连接尚未建立。 1:连接已建立并且可以进行通信。 2:连接正在关闭。 3:连接已关闭或无法建立。
以下是一个示例代码,展示了如何使用Angular 9 WebSocket获取连接状态:
import { Component } from '@angular/core';
@Component({ selector: 'app-websocket', templateUrl: './websocket.component.html', styleUrls: ['./websocket.component.css'] }) export class WebSocketComponent { websocket: WebSocket; connectionStatus: string;
constructor() { this.websocket = new WebSocket('ws://localhost:8080'); // 替换为您的WebSocket服务器URL this.connectionStatus = '连接中...';
this.websocket.onopen = () => {
this.connectionStatus = '已连接';
};
this.websocket.onclose = () => {
this.connectionStatus = '已关闭';
};
this.websocket.onerror = () => {
this.connectionStatus = '连接错误';
};
} }
连接状态:{{ connectionStatus }}
请注意,上述示例假设您的WebSocket服务器运行在本地主机上的端口8080上。您需要将其替换为您的实际WebSocket服务器URL。
当您启动应用程序并打开该组件时,它将尝试与WebSocket服务器建立连接,并通过连接状态属性显示连接状态。