This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

RTCDataChannelEvent.channel

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2020년 1월⁩.

Experimental: 이 기능은 실험적인 기능입니다.
프로덕션 환경에서 사용하기 전에 브라우저 호환성 표를 주의 깊게 확인하세요.

읽기 속성인 RTCDataChannelEvent.channelRTCDataChannel와 관련이 있는 이벤트를 반환합니다.

Syntax

js
var channel = RTCDataChannelEvent.channel;

RTCDataChannel 객체는 RTCPeerConnection을 원격 피어와 연결해주는 데이터 채널을 알려줍니다.

예시

datachannel 이벤트 핸들러 안 코드의 첫 줄에서 이벤트 객체의 채널을 가져오고, 이를 데이터 트래픽을 관리하는 코드에 사용 될 수 있도록 지역 변수로 저장합니다.

js
pc.ondatachannel = function (event) {
  inboundDataChannel = event.channel;
  inboundDataChannel.onmessage = handleIncomingMessage;
  inboundDataChannel.onopen = handleChannelOpen;
  inboundDataChannel.onclose = handleChannelClose;
};

명세

Specification
WebRTC: Real-Time Communication in Browsers
# dom-datachannelevent-channel

브라우저 호환성

See also