RTCIceTransport
方法
getRemoteCandidates()
returns an array which contains one
RTCIceCandidate
for each of the candidates that have been received from the remote peer so far during the current
ICE
gathering session.
Each time your signaling code calls
RTCPeerConnection.addIceCandidate()
to add a received candidate to the ICE session, the ICE agent places it in the list returned by this function.
remoteCandidates = RTCIceTransport.getRemoteCandidates();
None.
An array containing one
RTCIceCandidate
object for each candidate that has been received so far from the remote peer during the current ICE candidate gathering session.
It's important to keep in mind that there's no way to correlate these remote candidates with compatible local candidates. To find the best match found so far, call
RTCIceTransport.getSelectedCandidatePair()
.
This simple example gets the remote candidate list from the
RTCIceTransport
for the first
RTCRtpSender
在
RTCPeerConnection
, then outputs to the console all of the candidates in the list.
var remoteCandidates = pc.getSenders()[0].transport.transport.getRemoteCandidates();
remoteCandidates.forEach(function(candidate, index)) {
console.log("Candidate " + index + ": " + candidate.candidate);
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCIceCandidate.getRemoteCandidates()' in that specification. |
候选推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
getRemoteCandidates
|
Chrome 不支持 No | Edge 不支持 15 — 79 | Firefox 不支持 No | IE 不支持 No | Opera 不支持 No | Safari 不支持 No | WebView Android 不支持 No | Chrome Android 不支持 No | Firefox Android 不支持 No | Opera Android 不支持 No | Safari iOS 不支持 No | Samsung Internet Android 不支持 No |
不支持
RTCIceTransport
component
gatheringState
getRemoteCandidates()
ongatheringstatechange
onselectedcandidatepairchange
onstatechange
role
state
MediaDevices.getUserMedia()
Navigator.mediaDevices
RTCCertificate
RTCDTMFSender
RTCDTMFToneChangeEvent
RTCDataChannel
RTCDataChannelEvent
RTCDtlsTransport
RTCErrorEvent
RTCIceCandidate
RTCPeerConnection
RTCPeerConnectionIceErrorEvent
RTCPeerConnectionIceEvent
RTCRtpReceiver
RTCRtpSender
RTCRtpTransceiver
RTCSctpTransport
RTCSessionDescription
RTCStatsEvent
RTCStatsReport
RTCTrackEvent