我无法弄清楚为什么在嵌套回调中无法运行sendKey
函数。我尝试了this.sendKey
,sendkey.sendKey
,但两种方法都无效。
相反,正在调用isAlive
函数。
var sendkey = this.sendKey;
this.on = function (callbackOn) {
this.isAlive(function (status) {
if(status){
//this.sendKey('KEY_POWER');
sendkey.sendKey('KEY_POWER');
}
callbackOn("");
});
};
this.sendKey = function(key, callback) {
//this code never fires
};