我正在为我的一些函数编写单元测试,而测试运行器似乎遇到了绑定函数的问题。我正在绑定一个函数,所以我在内部函数中引用了这个。这是代码:
loadStates: function(name, stateName, options) {
if (myModule.getModule(name) !== undefined) {
this.prepState(name, stateName, options);
} else {
var bindForCheck = this.prepState.bind(this);
//module cannot be found check for 5 seconds
$log.warn("Requesting " + name + "...");
var timeToCheck = true;
setTimeout(function() {
timeToCheck = false;
}, 5000);
var check = {
init: function() {
check.checkAgain();
},
checkAgain: function() {
if (timeToCheck) {
if (myModule.getModule(name) !== undefined) {
bindForCheck(name, stateName, options);
} else {
//still doesn't exists
setTimeout(check.checkAgain, 200);
}
} else {
//doesn't exist after 5 seconds
$log.error("Requested module (" + name + ") could not be found at this time.");
}
}
};
check.init();
}
}
问题在于
var bindForCheck = this.prepState.bind(this);
这只是让我在check.checkAgain()函数中调用外部函数。
当我尝试运行函数的else部分时,测试运行器正在吐出这个错误
TypeError: 'undefined' is not a function (evaluating 'this.prepState.bind(this)')
可以在这里使用一些帮助,这让我难以理解如何解决这个问题。谢谢!
答案 0 :(得分:4)
你可能正在使用版本的PhantomJS< 2.这是github上的issue。您将不得不更新PhantomJS或使用polyfill。有一个bower package可以解决问题。