RTCIceTransport
方法
getLocalCandidates()
returns an array of
RTCIceCandidate
objects, one for each of the candidates that have been gathered by the local device during the current
ICE
agent session.
The local candidates are placed in this list by the ICE agent prior to being delivered to the local client's code in an
icecandidate
event so that the client can forward the candidates to the remote peer.
localCandidates = RTCIceTransport.getLocalCandidates();
None.
A JavaScript
数组
containing one
RTCIceCandidate
object for each candidate that has been identified so far during the ICE candidate gathering session.
You can't correlate these local candidates with matching remote candidates. To find the best match found so far, call
RTCIceTransport.getSelectedCandidatePair()
.
This simple example gets the local candidate list from the
RTCIceTransport
for the first
RTCRtpSender
在
RTCPeerConnection
, then outputs to the console all of the candidates in the list.
var localCandidates = pc.getSenders()[0].transport.transport.getLocalCandidates();
localCandidates.forEach(function(candidate, index)) {
console.log("Candidate " + index + ": " + candidate.candidate);
});
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCIceCandidate.getLocalCandidates()' in that specification. |
候选推荐 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
getLocalCandidates
|
Chrome 不支持 No | Edge 不支持 No | 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
getLocalCandidates()
getLocalParameters()
getSelectedCandidatePair()
MediaDevices.getUserMedia()
Navigator.mediaDevices
RTCCertificate
RTCDTMFSender
RTCDTMFToneChangeEvent
RTCDataChannel
RTCDataChannelEvent
RTCDtlsTransport
RTCErrorEvent
RTCIceCandidate
RTCPeerConnection
RTCPeerConnectionIceErrorEvent
RTCPeerConnectionIceEvent
RTCRtpReceiver
RTCRtpSender
RTCRtpTransceiver
RTCSctpTransport
RTCSessionDescription
RTCStatsEvent
RTCStatsReport
RTCTrackEvent