如果不对类本身进行一些修改,我无法访问类的方法。
请参阅以下演示代码:
function myCallback() {
this.otherMethod();
}
class hiddenClass {
static hiddenFunction(callback) {
callback();
}
static otherMethod(){
console.log("success");
}
}
hiddenClass.hiddenFunction(myCallback);
在这个简单的示例中,我想在回调中访问 this.otherMethod()。显而易见的答案是更改callback()
为callback.bind(this)()
,但是在这种情况下, hiddenClass 将是一个库。
我怎么能调用这个其他方法?
作为参考,我正在尝试使用 node-cron 创建 cron 作业。如果数据库检查返回 true,我想销毁这些作业,检查作业的每个周期(在回调中)。作业有一个内部方法.destroy()
。我知道我可以将 cron 作业保存在一个变量中,然后调用variable.destroy()
,但是有没有办法在回调中执行它(因为这些作业是在 for 循环中创建的,我不想确定要从中销毁哪个作业在回调中)
cron.schedule(`5 * * * * *`, async function () {
schedule = await Schedule.findById(schedule._id);
if (!schedule) this.destroy() // Destroy the job if schedule is not found (this returns Window)
}
);