本文介绍了是在Dartium中实现addIceCandidate吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想呼叫:

peerConn.addIceCandidate(其中peerConn是RtcPeerConnection的实例)

peerConn.addIceCandidate (where peerConn is an instance of RtcPeerConnection)

我会得到:

NotSupportedError:Internal Dartium Exception

NotSupportedError: Internal Dartium Exception

是否支持addIceCandidate?

Is addIceCandidate supported? And what is the status of WebRTC in Dartium?

推荐答案

Dart错误跟踪器中存在一个关于此问题的问题:

There exists a issue on the Dart bug tracker regarding this problem:

看来(目前)唯一的解决方法是使用dart2js和Chrome ...

It seems that (at the moment) the only workaround is to use dart2js with Chrome...

这篇关于是在Dartium中实现addIceCandidate吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 23:06