MIDIConnectionEvent

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。

Web MIDI APIMIDIConnectionEvent インターフェイスは、MIDIAccess インターフェイスの statechange イベントおよび MIDIPort インターフェイスの statechange イベントに渡されるイベントです。これは、新しいポートが利用可能になった時と、利用可能だったポートが利用不可能になった時に毎回発生します。たとえば、MIDI デバイスがコンピューターに接続されたり切断されたりするたびに、このイベントが発火します。

Event MIDIConnectionEvent

コンストラクター

MIDIConnectionEvent()

新しい MIDIConnectionEvent オブジェクトを生成します。

インスタンスプロパティ

MIDIConnectionEvent.port 読取専用

接続または切断されたポートを表す MIDIPort インスタンスへの参照を返します。

Navigator.requestMIDIAccess() メソッドは、MIDIAccess オブジェクトで解決する Promise を返します。ポートの状態が変わると、MIDIConnectionEventstatechange イベントに渡されます。これにより、ポートの情報をコンソールに出力できます。

js
navigator.requestMIDIAccess().then((access) => {
  access.onstatechange = (event) => {
    console.log(event.port.name, event.port.manufacturer, event.port.state);
  };
});

仕様書

Specification
Web MIDI API
# midiconnectionevent-interface

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
MIDIConnectionEvent
MIDIConnectionEvent() constructor
port

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support
See implementation notes.