我有一个基本的webRTC应用程序,该应用程序支持两个对等方之间的视频/音频通信和文件共享。在Mozilla Firefox上打开该应用程序时,该应用程序按预期运行,但在Google Chrome上运行时,该onicecandidate返回null
我的RTCPeerConnection
myConnection = new RTCPeerConnection();
建立对等连接
myConnection.createOffer().then(offer => {
currentoffer = offer
myConnection.setLocalDescription(offer);
})
.then(function () {
myConnection.onicecandidate = function (event) {
console.log(event.candidate);
if (event.candidate) {
send({
type: "candidate",
candidate: event.candidate
});
}
};
send({
type: "offer",
offer: currentoffer
});
})
.catch(function (reason) {
alert("Problem with creating offer. " + reason);
});
在Mozilla Firefox上,您可以在控制台日志中看到在每个“ onicecandidate”事件中收集的所有ICE候选者
在Chrome上,输出为null
哔哔one
相关分类