我有一个小样本程序 < a href=> "http://pastebin.com/5gFkaPgg" rel="nofollow" >http://pastebin.com/5gFkaPgg ,为TCP的客户端提供REPL服务。根据文件 < a href=>http://nodejs.org/api/repl.html" rel="nofolpol" >http://nodejs.org/api/repl.html ,我通过 eval 功能(第11-13行) 设置是正确的, 但回拨对象不是一个函数。我在 docs 错误解释什么?
callback(null,result);
^
TypeError: object is not a function
无法回答我的问题...
According to https://github.com/joyent/node/blob/master/lib/repl.js the signature is
function(code, context, file, cb) {
//code
cb(err, result);
}
如果有更合适的解决办法,请通知我。