WebTransportError: streamErrorCode 属性

有限可用性

此功能不是基线功能,因为它在一些使用最广泛的浏览器中无法正常工作。

安全上下文:此功能仅在 安全上下文(HTTPS)中可用,在一些或所有 支持的浏览器 中可用。

注意:此功能在 Web Workers 中可用。

streamErrorCodeWebTransportError 接口的只读属性,它返回一个介于 0-255 之间的数字,表示此错误的应用程序协议错误代码,或者如果不可用则返回 null

一个数字,或 null

示例

js
const url = "notaurl";

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-streamerrorcode

浏览器兼容性

BCD 表仅在浏览器中加载

另请参阅