我正在编写一个程序来使用WebRTC传输数据。我想实现RTCDataChannel.onerror,因为我想处理一个错误事件。
我阅读了以下文档,但解释不明确。我想要有关该错误的更多具体信息。我想知道调用此方法时会发生什么。
https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel/onerror
答案 0 :(得分:0)
RTCDataChannel.onerror
是一个属性,应将其设置为函数。您应该将RTCDataChannel.onerror
的值设置为处理错误的函数。例如:
RTCDataChannel.onerror = function(error) {
// handle the error
alert("Uh oh, there is a problem. " + error);
}