Skip to content

Commit

Permalink
zh-cn: update the translation of the Bluetooth interface (mdn#23070)
Browse files Browse the repository at this point in the history
  • Loading branch information
yin1999 authored and seeker8 committed Aug 20, 2024
1 parent 1829827 commit 8d9c73d
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions files/zh-cn/web/api/bluetooth/index.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
---
title: Bluetooth
slug: Web/API/Bluetooth
l10n:
sourceCommit: e676701495a168168e0868311e4c4e7274fb6ed4
---

{{ apiref("Web Bluetooth API") }} {{Non-standard_header()}}
{{APIRef("Bluetooth API")}}{{securecontext_header}}{{SeeCompatTable}}

[Web Bluetooth API](/zh-CN/docs/Web/API/Web_Bluetooth_API)**`Bluetooth`**`接口`返回指代{{domxref("BluetoothDevice")}}带有指定选项的对象的{{jsxref("Promise")}}
[Web 蓝牙 API](/zh-CN/docs/Web/API/Web_Bluetooth_API) **`Bluetooth`** 接口提供了查询蓝牙可用性和请求访问这些设备的方法

## 接口
{{InheritanceDiagram}}

```
interface Bluetooth {
Promise<BluetoothDevice> requestDevice(RequestDeviceOptions options);
};
Bluetooth implements EventTarget;
Bluetooth implements BluetoothDeviceEventHandlers;
Bluetooth implements CharacteristicEventHandlers;
Bluetooth implements ServiceEventHandlers;
```
## 实例属性

## 特性
_从其父接口 {{domxref("EventTarget")}} 继承属性。_

## 实例方法

## 方法
- {{domxref("Bluetooth.getAvailability","Bluetooth.getAvailability()")}} {{Experimental_Inline}}
- : 返回一个 {{jsxref("Promise")}},其会兑现一个指示用户代理是否支持蓝牙的布尔值。一些用户代理允许用户配置一个指定该方法返回值的选项。
- {{domxref("Bluetooth.getDevices","Bluetooth.getDevices()")}} {{Experimental_Inline}}
- : 返回一个 {{jsxref("Promise")}},其会兑现一个包含当前来源允许访问的 {{domxref("BluetoothDevice")}} 的数组。权限是通过先前调用 {{domxref("Bluetooth.requestDevice","Bluetooth.requestDevice()")}} 获得的。
- {{domxref("Bluetooth.requestDevice","Bluetooth.requestDevice()")}} {{Experimental_Inline}}
- : 返回一个 {{jsxref("Promise")}},其会兑现匹配指定选项的 {{domxref("BluetoothDevice")}} 对象。

- {{domxref("Bluetooth.requestDevice()")}}
- : 返回一个包含指定选项的{{domxref("BluetoothDevice")}}对象的{{jsxref("Promise")}}。

## 详细说明
## 规范

{{Specifications}}

Expand Down

0 comments on commit 8d9c73d

Please sign in to comment.