VRDisplay: isConnected 属性

已弃用:此功能不再推荐。虽然某些浏览器可能仍然支持它,但它可能已从相关 Web 标准中删除,可能正在被删除,或者可能仅出于兼容性目的保留。避免使用它,并尽可能更新现有代码;请查看此页面底部的兼容性表,以指导您的决定。请注意,此功能可能随时停止工作。

非标准:此功能是非标准的,并且没有在标准化轨道上。请勿在面向 Web 的生产网站上使用它:它不会对每个用户都起作用。实施之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。

isConnectedVRDisplay 接口的只读属性,它返回一个布尔值,指示 VRDisplay 是否已连接到计算机。

注意:此属性是旧WebVR API 的一部分。它已被WebXR 设备 API 取代。

布尔值;true 表示显示器已连接;false 表示未连接。

示例

js
navigator.getVRDisplays().then((displays) => {
  // If a display is available, use it to present the scene
  if (displays.length > 0) {
    vrDisplay = displays[0];

    // Starting the presentation when the button is clicked: It can only be called in response to a user gesture
    btn.addEventListener("click", () => {
      // Only request presentation if the display is still connected.
      if (vrDisplay.isConnected) {
        vrDisplay.requestPresent([{ source: canvas }]).then(() => {
          // start rendering the app, etc.
        });
      } else {
        console.log("Connection to display lost");
      }
    });
  }
});

规范

此属性是旧版 WebVR API 的一部分,已被 WebXR 设备 API 取代。它不再是标准化的目标。

在所有浏览器都实现新的 WebXR API 之前,建议依赖于框架,如 A-FrameBabylon.jsThree.js,或 polyfill,来开发跨所有浏览器运行的 WebXR 应用程序 [1]

浏览器兼容性

BCD 表仅在浏览器中加载

另请参阅