我有以下代碼:在node.js中編程調用函數
Manager.prototype.checkOrder = function() {
var finish = function(err, filled) {
if(!filled) {
log.info(this.action, 'order was not (fully) filled, cancelling and creating new order');
this.exchange.cancelOrder(this.order);
}
log.info(this.action, 'was successfull');
}
this.exchange.checkOrder(this.order, _.bind(finish, this));
}
而且我不知道如何調用它的代碼的其他部分。
我已經試過這樣:
setTimeout(this.checkOrder, util.minToMs(1));
,但沒有奏效。 我想不使用setTimeout函數。
如何創建'exchange'變量? – vfabre
您的'checkOrder'方法的代碼不完整,請添加完整代碼 – Maxx
在節點中,您可以使用module.exports在其他部分獲取此數據。 –