WebTransportError: source 屬性
注意:此功能在 Web Workers 中可用。
source 是 WebTransportError 介面的一個只讀屬性,它返回一個列舉值,表示錯誤的來源。
值
一個列舉值;可以是 stream 或 session。
示例
js
const url = "not-a-url";
async function initTransport(url) {
try {
// Initialize transport connection
const transport = new WebTransport(url);
// The connection can be used once ready fulfills
await transport.ready;
// …
} catch (error) {
const msg = `Transport initialization failed.
Reason: ${error.message}.
Source: ${error.source}.
Error code: ${error.streamErrorCode}.`;
console.log(msg);
}
}
規範
| 規範 |
|---|
| WebTransport # dom-webtransporterror-source |
瀏覽器相容性
載入中…