在Nodejs回调中调用模块函数

时间:2014-08-26 03:16:00

标签: node.js casperjs

我有一个写入日志文件的模块。 (coffeescript抱歉,但你明白了!)

require = patchRequire(global.require)
fs = require('fs')

exports.h =

  log: ()->
    for s in arguments
      fs.appendFile "log.txt", "#{s}\n", (e)->
        if (e) then throw e

当我直接调用它时,它可以正常工作。但是当我从回调中调用它时,例如casperjs启动事件:

h = require('./h').h
casper = require('casper').create()

casper.start "http://google.com", ()->
  h.log("hi")

casper.run()

...我总是得到这个或类似的“未定义”TyepError:

TypeError: 'undefined' is not a function (evaluating 'fs.appendFile("log.txt", "" + s + "\n", function(e) {
      if (e) {
        throw e;
      }
    })')

谷歌搜索这并没有提供很多线索!

2 个答案:

答案 0 :(得分:3)

CasperJS在PhantomJS(或SlimerJS)上运行并使用其模块。它与nodejs不同。 PhantomJS'fs module没有appendFile功能。

当然,如果在casper中使用,您可以使用fs.write(filepath, content, 'a');附加到文件。如果您仍想在casper和node中使用模块,那么您需要编写一些粘合代码,如

function append(file, content, callback) {
    if (fs.appendFile) {
        fs.appendFile(file, content, callback);
    } else {
        fs.write(file, content, 'a');
        callback();
    }
}

答案 1 :(得分:0)

我认为问题出在coffeescript上。尝试使用splat参数而不是依赖于arguments对象。

log(statements...)

如果这不起作用,您可能需要查看javascript输出或在纯JavaScript中尝试相同的操作,看看是否会出现相同的错误。