连接后,chrome RTCPeerConnection事件不会触发

时间:2013-07-22 10:05:38

标签: webrtc

我有几个peerConnection对象的监听器,onConnection在firefox中触发并且运行良好,但在Chrome中没有被触发,你知道为什么吗?

pc1.onconnection = handleOnconnection;
pc1.oniceconnectionstatechange = handleState;
pc1.onreadystatechange = handleState;

pc2也是如此。

感谢您的帮助!

Rosone

1 个答案:

答案 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团队。