我有几个peerConnection对象的监听器,onConnection在firefox中触发并且运行良好,但在Chrome中没有被触发,你知道为什么吗?
pc1.onconnection = handleOnconnection;
pc1.oniceconnectionstatechange = handleState;
pc1.onreadystatechange = handleState;
pc2也是如此。
感谢您的帮助!
Rosone
答案 0 :(得分:0)
onconnection
不是最新标准中界面的一部分,因此这可能是Chrome未实现的原因:http://dev.w3.org/2011/webrtc/editor/webrtc.html#interface-definition。
Firefox中的代码将onconnection
列为Mozilla扩展程序:https://github.com/mozilla/mozilla-central/blob/master/dom/webidl/RTCPeerConnection.webidl#L98。
有关详细信息,您可以在dev-media列表中询问Mozilla团队。