NodeJS:原型中的Settimeout

时间:2013-05-16 02:39:24

标签: javascript node.js

我最近开始使用NodeJS,但是当我做

enter image description here

我收到的错误如下:

enter image description here

最好的方法是什么?

我目前的解决方案是这样的:

var that = this;
setTimeout(function()
{
 that.myMethod();
}, 3000);

1 个答案:

答案 0 :(得分:1)

你可以使用旧的那个=这个技巧,或者使用bind,因为它肯定可以在node.js中使用:

setTimeout(this.myOtherMethod.bind(this), 10);