MIDIConnectionEvent: port プロパティ
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。
MIDIConnectionEvent
インターフェイスの読み取り専用プロパティ port
は、切断または接続されたポートを返します。
値
MIDIPort
オブジェクトです。
例
Navigator.requestMIDIAccess()
メソッドは、MIDIAccess
オブジェクトで解決する Promise
を返します。ポートの状態が変わると、MIDIConnectionEvent
が statechange
イベントに渡されます。これにより、ポートの情報をコンソールに出力できます。
js
navigator.requestMIDIAccess().then((access) => {
access.onstatechange = (event) => {
console.log(event.port.name, event.port.manufacturer, event.port.state);
};
});
仕様書
Specification |
---|
Web MIDI API # dom-midiconnectionevent-port |
ブラウザーの互換性
BCD tables only load in the browser