TypeError:'caller','callee'和'arguments'属性,继承方法调用上的Dojo错误

时间:2018-03-16 04:16:04

标签: javascript dojo

我有一个从另一个类A扩展的Dojo类B.当我从类B继承时,它会抛出错误。

  

TypeError:严格模式函数或调用它们的参数对象可能无法访问'caller','callee'和'arguments'属性

伪代码

class B define(["./A"],function(A) {
  return declare([A], { 

     foo: function(){
     let somevarialbe = arguments;
        when(service call here, function (response) {
          inherited(somevarialbe); //this is giving the above error
          inherited(arguments); //no error it executes the parent method
        }.bind(this));
     }
  });
});

0 个答案:

没有答案