0

我有一个快速的问题。我正在与 peerjs 进行视频聊天,我收到函数未定义的错误。这是代码:

主要构造函数是在其他文件中调用的 Voip,例如

var voip = new Voip(); 

这是功能:

function Voip(options) {
var self = this;

options = options ||  {};

var allOptions = _.extend({
secure: true,
debug: 3
}, options);

this.peerjs = new Peer(allOptions);

第一个问题就在这里。如何在回调函数中调用 otherCall 并监听调用事件 Function otherCall 位于底部。现在它是用 this.otherCall 编写的,但这不起作用。每当我收到呼叫事件并接听电话时,我都想使用此功能。

this.peerjs.on('call', function(call){
call.answer(window.localStream);
this.otherCall(call);
  });
}

然后通过继承 EventEmitter 扩展 Voip。我可以完全摆脱这条线并且仍然保持相同的功能吗?我根本不使用 EventEmitter,但在我帮助的代码中使用过。

Voip.prototype = _.extend(EventEmitter.prototype, {

同样在这里, self.otherCall 不起作用。解决办法是什么?

callOther: function(receiverId) {
var self = this;
var call = self.peerjs.call(receiverId, window.localStream);
self.otherCall(call);
},

otherCall: function(call) {

if (window.existingCall) {
    window.existingCall.close();
  }

call.on('stream', function(stream){
$('iframe').putthecodein....(stream)
  });
  window.existingCall = call;
}
});

希望我的问题很清楚。如果我总结一下,我想在收听呼叫事件时调用函数 otherCall 一次,第二次在 callOther 函数内调用。对于继承 EventEmitter,我想知道我是否可以以不需要该行并且一切仍然有效的方式修改代码。

4

1 回答 1

2

像这样使用。它可能会起作用。

var self = this;

self.peerjs.on('call', function(call){
    call.answer(window.localStream);
    self.otherCall.call(self, call);
});
于 2015-07-21T09:55:11.567 回答