BluetoothUUID: getCharacteristic() 静态方法
getCharacteristic()
是 BluetoothUUID
接口的静态方法,当传入名称或 16 位或 32 位 UUID 别名时,它返回表示已注册特征的 UUID。
语法
js
BluetoothUUID.getCharacteristic(name)
参数
名称
-
包含特征名称的字符串。
返回值
一个 128 位 UUID。
异常
TypeError
-
如果
name
未出现在注册表中,则抛出此错误。
示例
在以下示例中,返回并打印到控制台的 UUID 代表名为apparent_wind_direction
的特征。
js
let result = BluetoothUUID.getCharacteristic("apparent_wind_direction");
console.log(result); // "00002a73-0000-1000-8000-00805f9b34fb"
规范
规范 |
---|
Web Bluetooth # dom-bluetoothuuid-getcharacteristic |
浏览器兼容性
BCD 表格仅在浏览器中加载