MIDIPort: type-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Sicherer Kontext: Diese Funktion ist nur in sicheren Kontexten (HTTPS) in einigen oder allen unterstützenden Browsern verfügbar.
Die type
-Eigenschaft der MIDIPort
-Schnittstelle gibt den Typ des Ports zurück und zeigt an, ob es sich um einen Eingabe- oder Ausgabe-MIDI-Port handelt.
Wert
Beispiele
Das folgende Beispiel durchläuft alle Eingangsports und gibt den type
jedes Ports in der Konsole aus.
js
for (const entry of midiAccess.inputs) {
const input = entry[1];
console.log(input.type); // should always be input
}
Spezifikationen
Specification |
---|
Web MIDI API # dom-midiport-type |
Browser-Kompatibilität
BCD tables only load in the browser