2

我正在使用 nodejs hapi 框架。到目前为止,一切都很好,我想尝试一下文档生成器。我知道它说它仍然可能会改变,但他们网站上的代码对我不起作用(http://spumko.github.com/resource/api/#documentation-generator):

// Create Hapi server
var http = new Hapi.Server('0.0.0.0', 8080);

var loutConfig = { plugin: { indexTemplatePath: './templates' } };
http.plugin().require('lout', loutConfig, function () {
    http.start(); 
}); 

这会引发类型错误,抱怨 plugin() 不是 http(hapi 服务器)的函数。

有什么想法吗?

谢谢,马库斯

4

1 回答 1

1

我认为您需要在引用 http.plugin 时删除括号,如下所示:

// Create Hapi server
var http = new Hapi.Server('0.0.0.0', 8080);

var loutConfig = { plugin: { indexTemplatePath: './templates' } };
http.plugin.require('lout', loutConfig, function () {
    http.start(); 
}); 
于 2013-04-06T16:22:16.710 回答